* {
    box-sizing: border-box;
}

:root {
    --primary: 221.2 91.2% 59.8%;
    --accent: 24.6 95% 53.1%;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #fff;
}

a {
    color: inherit;
    text-decoration: none;

    &:hover {
        text-decoration: underline;
    }
}

body {
    height: 100%;
    font-family: 'Roboto', sans-serif;
    color: #121212;

    .content {
        margin: 0 auto;
    }

    .wrapper {
        min-height: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 86px;
    }

}


.about {
    .logo {
        top: 24px;
        left: 36px;
        font-family: "Literata", serif;
        font-size: 64px;
        font-weight: 500;
        line-height: 1;
        color: #121212;
    }

    & > div {
        margin-top: 48px;
        font-size: 24px;
        font-weight: 400;
        line-height: 1.4;
        text-align: left;

        @media (min-width: 767px) {
            font-size: 38px;
        }

        span {
            display: inline-block;
            white-space: nowrap;

            @media (min-width: 767px) {
                text-decoration-thickness: 5px;
                text-underline-offset: 5px;
            }

            &:hover {
                text-decoration-color: rgba(66, 165, 245, 1);
            }
        }
    }
}

.clients {
    position: relative;
    padding-top: 8px;

    &:before {
        position: absolute;
        top: 0;
        content: "";
        display: block;
        width: 40px;
        height: 2px;
        background-color: #121212;
    }

    h2 {
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        line-height: 1;
        margin: 0;
        color: #aaa;
    }

    ul {
        display: grid;
        padding: 0;
        margin: 0;
        margin-top: 24px;
        list-style: none;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        column-gap: 64px;
        text-align: left;
        /* background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text; */

        @media (min-width: 768px) {
            grid-template-columns: 1fr 1fr 1fr;
        }

        li {
            font-size: 16px;
            padding: 0;
            margin: 0;
            white-space: nowrap;

            @media (min-width: 767px) {
                font-size: 24px;
            }
        }
    }
}


.contact {
    position: relative;
    padding-top: 16px;
    line-height: 1.6;
    font-size: 14px;

    @media (min-width: 767px) {
        font-size: 18px;
    }

    &:before {
        position: absolute;
        top: 0;
        content: "";
        display: block;
        width: 40px;
        height: 2px;
        background-color: #121212;
    }
}
