#header {
    display:flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    background-color: #EB995B;
    padding: 3px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
    border-radius: 0 0 15px 15px;
}

#header > div > a {
    background: #3A0500;
    padding: 2px;
    margin: 5px;
}

#NULL {
    border: #3A0500 solid 2px;
    border-radius: 5px;
}

#clicked {
    border: #ffffff solid 2px;
    border-radius: 5px;
}

#header > #logo {
    border: none;
    margin-top: 4px;
}

#logo img{
    width: 50px;
    height: 50px;
    margin-left: 10px;
    margin-right: 10px;
}

#header a {
    color: #ffffff;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
}

#footer a {
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

#bhome {
    background-image: url("../media/photos/03.jpg");
}

#babout {
    background-image: url("../media/photos/03.jpg");
}

#bimprint {
    background-image: url("../media/photos/03.jpg");
}

body {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: #000000;
    color: #000000;
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#content {
    display: flex;
    flex-grow: 1;
    justify-content: center;
}

#content > div {
    display: flex;
    flex-direction: column;
    text-align: center;
    flex-grow: 1;
    max-width: 950px;
    background-color: #DC5D25dd;
    border-radius: 15px;
}

.photos {
    display: flex;
    flexdirection: row;
    justify-content: center;
    align-items: center;
}

.aphoto {
    padding: 10px;
}

.aphoto > img {
    max-width: 245px;
    border-radius: 15px;
}

#credit {
    font-size: 10px;
    margin-top: 50px;
}

#footer {
    justify-content: center;
    background-color: #000000;
    display: flex;
    border-radius: 15px 15px 0 0;
}

#footer div {
    margin: 5px;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif
}

#copyright {
    text-align: center;
    background-color: #000000;
    font-size: 12px;
}

@media all and (max-width: 800px) {
    .photos {
        display: inline;
    }
}