@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: #e6ccff;
    font-family: 'Comic Neue', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #333;
}

.container {
    text-align: center;
    padding: 10px;
    width: 100%;
}

.title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    word-wrap: break-word; /* Prevents overflowing text */
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.center-image {
    width: 300px;
    height: 300px;
    border-radius: 5%;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.2s;
}
.center-image:hover {
    background-color: #7a52b3;
    transform: scale(1.05);
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
}

.button {
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #7a52b3;
    border-radius: 5px;
    background-color: #9f7bf7;
    color: white;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s, transform 0.2s;
}

.button:hover {
    background-color: #7a52b3;
    transform: scale(1.05);
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .content {
        flex-direction: column; /* Stack image and buttons vertically */
        align-items: center;
    }

    .center-image {
        width: 80%; /* Adjust image width */
        max-width: 250px; /* Smaller on mobile */
    }

    .button-group {
        width: 90%; /* Adjust button group width */
        max-width: 250px;
    }
}
