body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    background-color: #fff5f5;
    background-image: linear-gradient(315deg, #fff5f5 0%, #ffedee 74%);
}
h1{
    color: #ff3366;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
button {
    left: 47%;
    top: 20%;
    padding: 12px 24px;
    width: 120px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    transition: 0.2s ease;
    color: #ff3366;
    background-color: white;
    border-radius: 30px;
    border: 2px solid #ff3366;
    box-shadow: 0 3px 10px rgba(255, 51, 102, 0.2);
}
button:hover {
    transform: scale(1.05);
}
.question{
    width: 100%;
    max-width: 500px;
    text-align: center;
    margin-bottom: 1rem;
}
.chaton{
    width: 400px;
    height: 400px;
    display: flex;
    pointer-events: none;
    z-index: -1;
    justify-content: center;
    align-items: center;
    background-image: url(chaton.gif);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 1rem 0;
}
.chaton2{
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(chaton2.gif);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.oui{
    height: 80px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}
.jetaime{
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    padding: 12px 24px;
    width: 120px;
    font-size: 16px;
    cursor: pointer;
    color: white;
    background-color: #ff3366;
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(255, 51, 102, 0.3);
    transition: all 0.3s ease;
}
.jetaime:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.4);
}

/* Animation for when the page loads */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.question, .chaton, .oui {
    animation: fadeIn 0.8s ease-out forwards;
}
