@import "zen_kaku_gothic_antique.css";

body {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff8f1;
    color: #1f1f1f;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    animation: fadeIn 1s ease-in forwards;
}

a, a:visited {
    color: #1f1f1f;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #007acc;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
    margin-bottom: auto;
    padding: 2rem;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    margin: 10px 0;
    font-size: 1.1rem;
}

footer {
    text-align: center;
    padding: 1rem 0;
    font-size: 0.85rem;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.main-image {
    max-width: 400px;
    height: auto;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    li {
        font-size: 1rem;
    }

    .content {
        padding: 1rem;
    }
}
