@import url('https://fonts.googleapis.com/css2?family=Caveat&display=swap');

body {
    font-family: 'Caveat', cursive;
    background-color: #ffe398;
    color: #39383a;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    max-width: 600px;
    margin: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    max-width: 400px;
    width: 80%;
    margin: 0 auto 20px;
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

p {
    font-size: 2em;
    line-height: 1.6;
}

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

    p {
        font-size: 1.4em;
    }
}

.text-content a {
    color: inherit;
    text-decoration: none;
}

.text-content a:hover {
    text-decoration: underline;
}

footer {
    font-family: sans-serif;
    font-size: 0.9rem;
    padding-top: 40px;
    width: 100%;
    text-align: center;
}

footer a {
    color: #39383a;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}