@font-face {
    font-family: "Michroma";
    src: url("Fonts/michroma-latin.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body,
html {
    height: 100%;
    margin: 0;
    color: #fff;
    line-height: 1.7;
    font-family: "Michroma", Arial, sans-serif;
    font-size: 0.875rem;
    background-color: #000;
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    opacity: 0.8;
}

.content {
    min-height: 100dvh;
    width: 96%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;

    h1 {
        font-weight: 400;
    }

    .header-logo-container {
        width: 15%;
        max-width: 50px;
        height: clamp(150px, calc(113.636px + 11.364vw), 250px);
        display: flex;
        align-items: end;
        border: 1px solid #fff;
        border-top: none;

        .header-logo {
            width: 100%;
            height: auto;
        }
    }
}

.home-image {
    height: clamp(250px, calc(195.455px + 17.045vw), 400px);
    margin-top: -10%;
}

.home {
    max-width: 800px;
    text-align: center;
}

.terms, .company-profile {
    max-width: 800px;
    text-align: left;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    margin-bottom: 2rem;

    .links {
        display: flex;
        width: 100%;
    }

    .link {
        width: calc(100% / 3);
    }

    .social {
        display: flex;
        gap: 0.5rem;

        .social-icons {
            display: flex;
            gap: 0.5rem;
        }

        img {
            width: 1rem;
        }
    }
}

@media only screen and (max-width: 768px) {
    .content {
        padding-inline: 1rem;
        width: calc(100% - 2rem);
    }

    footer {
        margin-bottom: 1rem;
        gap: 2rem;
    }

    .social {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;

        .social-icons {
            gap: 1rem !important;

            span {
                display: none;
            }
        }
    }

    .links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .link {
        width: 100% !important;
        text-align: center !important;
    }
}