* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

.header-content {
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7rem;
    margin: 1rem 1rem 0 1rem;
    background-color: black;
    z-index: 1000;
    border-radius: 1rem;
}

.header-content a {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -.1rem;
    text-decoration: none;
    color: white;
    font-style: italic;
}

.header-content a p span {
    font-weight: 300;
    margin-left: .15rem;
}

main {
    margin: 2.5rem 8rem;
}

main h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

main section {
    margin-bottom: 3rem;
}

main section h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: .5rem;
}

.legal-notices-list {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0.5rem 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.legal-notices-list div {
    display: contents;
}

.legal-notices-list span {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.75);
    font-weight: 400;
}

.legal-notices-list a {
    color: inherit;
    text-decoration: underline;
}

.legal-notices-text p {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.75);
    font-weight: 400;
    margin-bottom: 1rem;
    max-width: 70%;
    text-align: justify;
}

@media (min-width: 769px) and (max-width: 1200px) {
    .header-content {
        padding: 0 4rem;
        height: 7rem;
    }

    main {
        margin: 2rem 5rem;
    }

    main h1 {
        font-size: 2.25rem;
    }

    .legal-notices-text p {
        max-width: 85%;
    }
}

@media (max-width: 768px) {
    .header-content {
        height: auto;
        padding: 2.8rem 1.5rem;
        margin: .75rem;
        flex-direction: column;
        gap: .75rem;
    }

    .header-content a {
        font-size: 1.85rem;
        text-align: center;
    }

    main {
        margin: 1.5rem 1.25rem 2.5rem;
    }

    main h1 {
        font-size: 1.9rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    main section {
        margin-bottom: 2rem;
    }

    main section h2 {
        font-size: 1.1rem;
    }

    .legal-notices-list {
        gap: .35rem;
        font-size: .8rem;
        grid-template-columns: 190px 1fr;
    }

    .legal-notices-list span {
        font-size: .75rem;
    }

    .legal-notices-text p {
        max-width: 100%;
    }
}