body {
    background-color:#0a0a0a;
}
.box {
    border: 2px solid white;
    padding: 2vh;
    max-width: 50vw;
    text-align: center;
    overflow: hidden;
    white-space: normal;
    overflow-wrap: break-word;
    border-radius: 20px;
}

.creation {
    display: flex;
    justify-content: center;
}

header {
    display: flex;
}
header div {
    display: flex;
    width: 100%;
}
.logo {
    height: 10vh;
    width: 10vh;
}
@keyframes neonBlink {
    0% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5),
            0 0 10px rgba(255, 255, 255, 0.4),
            0 0 15px rgba(255, 255, 255, 0.3),
            0 0 20px rgba(255, 255, 255, 0.2),
            0 0 25px rgba(255, 255, 255, 0.1);
    }
    50% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6),
            0 0 20px rgba(255, 255, 255, 0.5),
            0 0 30px rgba(255, 255, 255, 0.4),
            0 0 40px rgba(255, 255, 255, 0.3),
            0 0 50px rgba(255, 255, 255, 0.2);
    }
    100% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5),
            0 0 10px rgba(255, 255, 255, 0.4),
            0 0 15px rgba(255, 255, 255, 0.3),
            0 0 20px rgba(255, 255, 255, 0.2),
            0 0 25px rgba(255, 255, 255, 0.1);
    }
}
.retour {
    width: 8vh;
    height: 8vh;
    padding-top: 2vh;
}
body {
    color: white;
    font-family: "Montserrat", sans-serif;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
body {
    color: white;
    font-family: Arial, sans-serif;
    height: 100vh;
    margin: 0;
}
.test {
    display:flex;
    justify-content: center;
}
.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1000px;
    width: 100%;
    justify-content: center;
}
.card {
    border: 2px solid white;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}
.card:hover {
    transform: scale(1.05);
}
.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.card h2 {
    text-align: center;
    padding: 10px;
    margin: 0;
}
.card a {
    display: block;
    text-decoration: none;
    color: white;
}