*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background: url('/asset/Illustration.png') no-repeat center center fixed;
    background-size: cover;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

img,
iframe {
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
}

h1 {
    opacity: 0;
    height: 0;
    width: 0;
    position: absolute;
}

.container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 94vw;
    max-width: 1000px;
    margin-top: 3vw;
    background-color: #fbfbfb;
    border-radius: 30px;
    padding: 20px;
    gap: 64px;
    padding-bottom: 64px;
    z-index: 1;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 10px;
    background: url('/asset/Illustration.png') no-repeat center center;
    background-size: cover;
    aspect-ratio: 16/6;
    padding: 20px;
}

.logo {
    width: 80%;
    max-width: 500px;
    height: auto;
    max-height: 80%;
}

.description {
    width: 100%;
    max-width: 800px;
    padding: 0 2vw;
}

iframe {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 10px;
}

.btn__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 300px;
    height: 70px;
    padding: 10px 20px;
    padding-top: 16px;
    background: url('/asset/Bouton.png') no-repeat center center;
    background-size: cover;
    color: white;
    border-radius: 10px;
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-family: "Modak", sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-shadow: 2px 0 #5C5DF8, -2px 0 #5C5DF8, 0 2px #5C5DF8, 0 -2px #5C5DF8,
        1px 1px #5C5DF8, -1px -1px #5C5DF8, 1px -1px #5C5DF8, -1px 1px #5C5DF8;
}

.btn:hover {
    text-decoration: none;
}

.blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    z-index: 0;
}

.bgvideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    background-color: rgba(251, 251, 251, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 10px 10px 0 0;
    margin-top: 64px;
    text-align: center;
}

@media (max-width: 600px) {
    .container {
        padding: 10px;
        gap: 32px;
        border-radius: 20px;
        padding-bottom: 32px;
    }

    .hero {
        padding: 10px;
    }

    footer {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}