@tailwind base;
@tailwind components;
@tailwind utilities;

header{
    z-index: 999;
}

#services {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;

    .service {
        width: 250px;
        height: 200px;
        background-color: #FF9800;
        display: flex;
        flex-direction: column;
        justify-content: end;
        border-radius: 12px;

        padding: 1rem;

        h3 {
            font-size: 18px;
            font-weight: 500;
        }

        p {
            font-size: 12px;
            margin-top: .1rem;
        }
    }
}

html {
    scroll-behavior: smooth;
}