/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #FAF3E0;
    color: #333333;
    text-align: center;
    position: relative;
    padding: 40px;
}

h1 {
    font-family: 'Caveat', cursive;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.logo {
    max-width: 200px; /* or try 150px */
    height: auto;
    margin-bottom: 20px;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #333333;
}

/* Responsive Design */
@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }

    p {
        font-size: 1.25rem;
    }
}
