@font-face {
    font-family: "EliteMonoRegular";
    src: url(./font/EliteMono-Regular.woff2);
}

@font-face {
    font-family: "EliteMonoMedium";
    src: url(./font/EliteMono-Medium.woff2);
}

* {
    background-color: #fce8eb;
    ;
}

body {
    max-width: 952px;
    margin: auto;
    padding: 2rem 1rem;
}

h1 {
    font-family: "EliteMonoRegular", sans-serif;
    font-size: 3.75rem;
    line-height: 4rem;
    color: #0000ff;
}

p {
    font-family: "EliteMonoMedium", sans-serif;
    font-size: 1.875rem;
    line-height: 2.5rem;
    margin: 0;
    color: #0000ff;
}

a {
    font-family: "EliteMonoMedium", sans-serif;
    text-decoration: none;
    color: #0000ff;
}

a:hover {
    color: #e81b49;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 0.25rem;
}

.header a {
    font-size: 1.875rem;
    line-height: 4rem;
    margin: 0;
}

.language-switch {
    display: flex;
    gap: 0;
}

.language-switch a {
    padding: 0 0.7rem;
}

.header-logo-link {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 3rem 0;
}

.footer {
    display: flex;
    flex-direction: row;
    padding: 3rem 0;
    justify-content: space-between;
}

.footer p {
    font-size: 1.25rem;
    line-height: 1.5rem;
}

.footer a {
    font-size: 1.25rem;
    line-height: 1.5rem;
}

.footer-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-wrapper {
    display: flex;
    gap: 3rem;
}

.detail-column {
    display: flex;
    flex-direction: column;
}


.dot-divider {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    font-family: "EliteMonoMedium", serif;
    font-size: 1.875rem;
    line-height: 1;
    color: #0000ff;
}

@media (max-width:840px) {
    .footer {
        flex-direction: column;
        gap: 3rem;
    }

    .detail-wrapper {
        flex-direction: column;
    }
}

@media (max-width:500px) {
    h1 {
        font-family: "EliteMonoRegular", sans-serif;
        font-size: 2.8rem;
        line-height: 3.1rem;
        color: #0000ff;
    }

    p {
        font-family: "EliteMonoMedium", sans-serif;
        font-size: 1.5rem;
        line-height: 1.9rem;
        margin: 0;
        color: #0000ff;
    }

    .header a {
        font-size: 1.5rem;
        line-height: 3rem;
    }

    .footer {
        gap: 2rem;
    }

    .footer p {
        font-size: 1.1rem;
        line-height: 1.5rem;
    }

    .footer a {
        font-size: 1.1rem;
        line-height: 1.5rem;
    }

    .content {
        gap: 2rem;
        padding: 2rem 0;
    }

    .dot-divider {
        font-size: 1.4rem;
    }
}