body {
    margin: 0;
    padding: 0 20px;
    font-family: Arial, sans-serif;
    background-color: #ffc6cf; /* Lovely pinky background */
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.image-container {
    margin-bottom: 1rem;
    background-color: white;
    border-radius: 2rem;
    margin: 0 5rem 0 5rem ;
}

.image-container img {
    max-width: 100%;
    width: 100%;
}

h1 {
    color: #fff;
    text-align: center;
}

.buttons {
    display: flex;
    gap: 10px;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    cursor: pointer;
}

#no-button {
    position: relative;
}

#no-button:active {
    visibility: hidden;
}
