/* General Styles */
body {
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background: background: url('images/moon.jpg') no-repeat center center/cover;
    color: white;
}

.welcome-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url('background.jpg') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}

}

/* Welcome Text Animation */
h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    text-shadow: 3px 3px 15px rgba(255, 255, 255, 0.8);
    animation: fadeIn 2s ease-in-out;
}

p {
    font-size: 1.5em;
    margin-bottom: 20px;
    animation: fadeIn 3s ease-in-out;
}

/* Button Styles */
.styled-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #4a4a4a;
    color: white;
    font-size: 1.3em;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s ease;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.2);
    animation: fadeIn 4s ease-in-out;
}

.styled-button:hover {
    background-color: crimson;
    transform: scale(1.1);
    box-shadow: 0px 0px 15px rgba(255, 0, 0, 0.8);
}

/* Poem Styling */
.poem-container {
    width: 70%;
    margin: auto;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.3);
    animation: fadeIn 2s ease-in-out;
}

/* Slow Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
