body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #083145;
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
    margin: 0 auto;
}

.banner-image, h1, .tab-button, li {
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
    .banner-image, h1, .tab-button, li, .typewriter {
        animation: none;
        opacity: 1;
    }
}

@media screen and (prefers-reduced-motion: no-preference) {
    .banner-image, h1, .tab-button {
        opacity: 0;
        animation: fadeIn 1s ease-in-out forwards;
    }

    .banner-image {
        animation-delay: 0.5s;
    }

    h1 {
        animation-delay: 1s;
    }

    .tab-button {
        animation-delay: 1.5s;
    }

    .typewriter {
        opacity: 0;
        animation: fadeIn 1s ease-in-out forwards;
        animation-delay: 2s;
    }
}

.banner-image {
    width: 100%;
    height: auto;
    max-width: calc(0.6 * 100%);
    border-radius: 8px;
    margin-bottom: 20px;
}

h1 {
    color: #f75c5a;
}

.typewriter {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.typewriter #typing-text {
    font-weight: bold;
    color: #f75c5a;
    font-size: 1.4em;
    border-right: 2px solid;
    font-family: monospace;
}

.tabs {
    margin-bottom: 20px;
}

.tab-button {
    background-color: transparent;
    border: 2px solid #eaad6a;
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1.4em;
    transition: background-color 0.3s, color 0.3s;
    color: #eaad6a;
}

.tab-button.active {
    background-color: #f75c5a;
    color: #fff;
    border-color: #f75c5a;
}

ul.checklist {
    display: none;
    list-style-type: none;
    padding: 0;
}

ul.checklist.active {
    display: block;
}

ul.checklist.active li {
    animation: fadeIn 0.5s ease-in-out forwards;
}

li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    opacity: 0;
    position: relative;
}

input[type="checkbox"] {
    margin-right: 10px;
}

label {
    flex: 1;
    color: #555;
}

input[type="checkbox"]:checked + label {
    color: #eaad6a;
    text-decoration: line-through;
}

.image-icon {
    margin-left: auto;
    cursor: pointer;
    font-size: 1.2em;
    color: #eaad6a;
}

.image-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.image-popup img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

#close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5em;
    color: #fff;
    cursor: pointer;
}

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

@media (max-width: 600px) {
    .container {
        margin: 5px;
    }
}
