@import url('https://fonts.googleapis.com/css2?family=Rochester&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rochester&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: "Roboto";
}

.nav {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    height: 6vh;
    margin: 1rem;
}

.nav-logo {
    display: flex;
    object-fit: cover;
    height: 80%;
}

.nav-burger-button {
    display: flex;
    height: 80%;
    aspect-ratio: 1;
    background-color: #fff;
    border: none;
}

.nav-burger-button img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.support {
    background-color: #000;
    color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 10rem;
    padding: 0.3rem 1rem;
    max-width: 8rem;
    max-height: 3rem;
}

.black-banner {
    background-color: #000;
    min-height: 50vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.banner-writing, .banner-video {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.banner-writing {
    color: #fff;
    font-size: 3rem;
    font-size: 3.5rem;
    font-weight: bold;
    font-family: "Rochester", Sans-serif;
    padding: 1rem;
}

.banner-video {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.video-container {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%; 
    min-width: 10rem;
    max-height: 18rem;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 1rem;
    border: 1rem solid #fff;
}

.video-container video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 1em;
}

.main-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.main-description {
    text-align: center;
}

.pink-text {
    color: #F03CA1;
    font-size: 1.5rem;
    font-weight: bold;
}

.big-description {
    color: #000000;
    font-family: "Rochester", Sans-serif;
    font-size: 3rem;
    font-weight: 800;
}

.puzzle-description {
    font-size: 0.8rem;
    color: #666;
}

.quick-link {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 5rem auto 0 auto;
    padding: 2rem auto;
}

.card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0.7rem;
    padding: 0;
}

.card-image {
    border-radius: 10px;
    height: 50%;
    width: 100%;
    overflow: hidden;
}

.card-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.card-description {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}

.newsletter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60vw;
}

.newsletter-title {
    text-align: center;
}
.inscription {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    background-color: #efefef;
    min-width: 40vw;
}

.inscription input {
    padding: 0.5rem;
    margin: 0.3rem;
    border: 1px solid #aaa;
}

.inscription button {
    background-color: #000;
    color: #fff;
    padding: 0.5rem;
    margin: 0.3rem;
}

.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.3rem;
    overflow: hidden;
}

.banner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
}

.contact {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

.contact p a {
    text-decoration: none;
    color: blue;
}

.contact p, .contact a {
    color: #fff;
    font-size: 0.8rem;
}

@media (max-width: 700px) {
    .black-banner {
        flex-direction: column;
    }

    .banner-writing {
        text-align: center;
    }

    .quick-link {
        flex-direction: column;
    }

    .inscription {
        min-width: 50vw;
    }
}

@media (min-width: 1000px) {
    .inscription {
        max-width: 40vw;
        min-width: 30vw;
    }
}
