
@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/Proxima_Nova_Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/Proxima_Nova_Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/Proxima_Nova_Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

p, h1, h2 {
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Proxima Nova', Arial, sans-serif;
    background-color: #F9F9F9;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    color: #000;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 10rem 1rem 10rem;
    gap: 4rem;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

header h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 4.5rem;
}

header img {
    width: 14.10469rem;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.copy {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.copy h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.625rem;
}

.copy p {
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.625rem
}

.countries-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.countries-row {
    display: flex;
    flex-wrap: wrap;
    align-self: stretch;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 1rem;
}

.country {
    color: #000;
    display: flex;
    align-items: center;
    white-space: nowrap;
    text-decoration: none;
    background-color: #FFF;
    padding: 1rem 1.5rem;
    gap: 0.75rem;
}

.country:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.country img {
    width: 3rem;
    height: 3rem;
}

.country span {
    font-size: 1.5rem;
    font-weight: 600;
}

footer {
    padding: 1rem 0rem;
    width: 100%;
    background-color: #000000;
    color: white;
    font-weight: 400;
    font-size: 1rem;
    text-align: center;
}

@media (max-width: 1024px) {
    .container {
        padding: 1.5rem 10rem 1rem 10rem;
        gap: 2rem;
    }

    header h1 {
        font-size: 3rem;
        line-height: 2rem;
    }

    header img {
        width: 8rem;
    }

    main {
        gap: 1.5rem;
    }
}


@media (max-width: 768px) {
    .container {
        padding: 1.5rem 1rem 1rem 1rem;
        gap: 1rem;
    }

    header {
        gap: 0.5rem;
    }
    header h1 {
        font-size: 2rem;
        line-height: 1.5rem;
    }
    
    header img {
        width: 7rem;
    }

    main {
        gap: 1rem;
    }

    .copy h2 {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .copy p {
        font-size: 1.2rem;
        line-height: 2rem;
    }

    .countries-container {
        gap: 0.5rem;
    }

    .countries-row {
        gap: 0.5rem;
    }

    .country {
        padding: 0.5rem 1rem;
    }

    .country img {
        width: 2rem;
        height: 2rem;
    }
    
    .country span {
        font-size: 1rem;
    }

}