/* styles.css */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
}

.fun-landing {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6f61;
    margin: 0;
}

.content p {
    font-size: 1.2rem;
    font-weight: 300;
    margin: 20px 0;
    color: #666;
}

.content button {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    background-color: #ff6f61;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.content button:hover {
    background-color: #e85a50;
    transform: scale(1.1);
}
