/* Reset default margins */
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('/media_resources/background.png');
    background-repeat: repeat;
    font-family: "Times New Roman", serif;
    text-align: center;
}

/* Main container */
.container {
    flex: 1;
    display: flex;
    flex-direction: column; 
    align-items: center;
    margin: 13vh auto;
    padding: 5px 20px 20px 20px;
    /* top right bottom left */
    width: 90%;
    max-width: 680px;
    min-height: 480px;
    max-height: 700px;
  //  box-shadow: 6px 6px 0 #888;
    border: 1px solid #ccc;
    background: rgba(255,255,255,0.85);
}

/* Title */
.title {
    font-size: 3rem;
    font-style: italic;
    font-weight: bold;
    margin-top: 0px, 0;
    margin-bottom: 20px;
    font-variant: small-caps;
    letter-spacing: 0px;

}

/* Banner */
.banner {
    max-width: 100%;
    width: 465px;
    height: auto;
    margin-top: 5px;
    margin-bottom: 20px;
}

/* Photo Viewing*/
.photo-viewer {
    gap: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.photo-viewer img {
    max-width: 100%;
    width: 520px;
    max-height: 500px;
    height: auto;
}

.arrow {
    background: none;
    border: 1px solid #999;
    font-size: 20px;
    padding: 6px 10px;
    cursor: pointer;
}

.arrow:hover {
    background: #e0e0e0;
}

/* Paragraph */
.paragraph {
    max-width: 350px;
    margin-top: 100px;
    //margin-bottom: 122px;
    font-size: 14pt;
}

/* Bottom Section */
.bottom {
    margin-top: auto;
}

/* Time and Updated Date Display */
.time {
    display: flex;
    flex-direction: column;
    font-style: italic;
    margin-bottom: 20px;
}

.caption {
    display: flex;
    flex-direction: column;
    font-style: italic;
    margin-bottom: 20px;
}
.links a:link {
    color: #0000EE;
}

.links a:visited {
    color: #551A8B;
}

.links a:hover {
    text-decoration: underline;
}

/* Footer */

.footer {
    text-align: center;
    display: flex;
    padding: 0px 0;
    font-size: 0.9rem;
}
    