/* General Styling */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #FCF3E6;
    color: #86956F;
    margin: 0;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container */
.container {
    padding: 20px;
    background: #F3D693;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
}

/* Logo */
.logo {
    width: 300px;
    margin-top: 100px;
    margin-bottom: 20px;
}

/* Headings */
h1 {
    color: #E1864C;
    font-size: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }
    h1 {
        font-size: 1.8rem;
    }
}
