body {
    margin: 0;
    /*background: #333333; */
    background-image: url("img/back4.png");
    background-repeat: repeat-y repeat-x;
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title {

color: #033b51;
}

.banner {

    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin-top: 10px;
}

.title {
    margin-bottom: 20px;
}

.text1 {
    color: #033b51;

}

.text2 {
    color: #033b51;
    font-size: 9px;

}

.about {
    color: #033b51;
    font-size: 16px;

}

.comic-frame {
    /*background: white;*/
    background-image: url("img/back3.gif");
    padding: 69px;
    /*border-radius: 16px;
    border: 2px solid #033b51;*/
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.comic-frame img {
    width: 560px;
    max-width: 90vw;
    height: auto;

}

.about-frame {
    background: white;    
    width: 560px;
    max-width: 90vw;
    height: auto;
    padding: 69px;
    border-radius: 16px;
    border: 2px solid #033b51;
}

/* Navigation buttons */
.nav {
    margin-top: 20px;
}

button {
    background: #033b51;
    border: none;
    color: white;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background: #ff2bbd;
}

/* Lower menu link */
.lowmenu-link {
    margin-top: 20px;
    display: inline-block;
    color: #033b51;
    text-decoration: none;
}

.archive-link:hover {
    color: white;
}

/* Archive grid */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    width: 90%;
    max-width: 900px;
}

.archive-grid img {
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}

.archive-grid img:hover {
    transform: scale(1.05);
}
