/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fredoka One', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    background-color: #f6781c;
    color: #333;
    padding: 20px;
}

header {
    text-align: center;
    padding: 20px 0;
    background-color: #FFD700;
    color: white;
    border-bottom: 5px solid #FFA500;
}

h1 {
    font-size: 2.5em;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #FFF8DC;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.story {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px dashed #FFB6C1;
}

.story img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
    border: 3px solid #FFB6C1;
    border-radius: 10px;
}

.story h2 {
    font-size: 2em;
    color: #4B0082;
    margin-bottom: 10px;
}

.story p {
    font-size: 1.4em;
    color: #6A5ACD;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #FFD700;
    color: white;
    /*position: fixed; */
    width: 100%;
    bottom: 0;
    border-top: 5px solid #FFA500;
}

/* Responsive Design */
@media (max-width: 600px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2em;
    }

    .story h2 {
        font-size: 1.5em;
    }

    .story p {
        font-size: 1.2em;
    }
}
