body {
    background-color: #101010;
    color: white;
    font-family: sans-serif;
}

a {
    color: #3c93ff;
}

a:visited {
    color: #9560ff;
}

.header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-items: left;
}

.header h1 {
    margin-left: auto;
    margin-right: auto;
    padding-right: 30px;
}

.header a {
    color: white;
    text-decoration: none;
    font-size: xxx-large;
}

.header a:visited {
    color: white;
    text-decoration: none;
}

.backbutton {
    padding-top: 15px;
    margin-left: 30px;
}

body h1 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.hover-zoom {
    transition: transform .2s;
}

.hover-zoom:hover {
    transform: scale(1.15);
}

.logo-icon {
    width: 40px;
    height: 40px;
    margin: 7px 10px;
}

.logo-tray {
    display: flex;
    flex-direction: row;
    justify-items: center;
    align-items: center;
}

#face_img {
    width: 70px;
    height: 70px;
    border: 2px solid white;
    border-radius: 100px;
    margin-right: 20px;
}

#image-box-holder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-start;
}

.box {
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #212121;
    border-radius: 10px;
    text-decoration: none;
    color: white;
}

.box h2,
.box p {
    margin: 10px 20px;
}

.box hr {
    width: 100%;
}

.box-hover-effect {
    transition: transform .2s;
}

.box-hover-effect:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.51);
    transform: scale(1.05);
}

.box a {
    text-decoration: none;
    color: white;
}

.box a:visited {
    text-decoration: none;
    color: white;
}

.category-thumb {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-start;
}

.category-thumb img {
    width: 50%;
    height: 50%;
    border-radius: 10px;
}

@media(max-width: 900px) {
    .image-box {
        width: 97vw;
    }

    .image-box iframe {
        width: 97vw;
        height: 55vw;
    }

    .box {
        width: 90%;
    }
}

@media(min-width: 901px) {
    .image-box {
        width: 900px;
    }

    .image-box iframe {
        width: 900px;
        height: 506px;
    }

    .box {
        width: 700px;
    }
}

.image-box {
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #212121;
    border-radius: 10px;
}


.image-box img {
    width: inherit;
    border-radius: 10px;
}

.image-box iframe {
    border-radius: 10px;
}

.image-box video {
    width: inherit;
    height: inherit;
    border-radius: 10px;
}

.image-desc {
    width: 100%;
    font-size: small;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.image-desc p {
    margin-top: 6px;
    margin-bottom: 6px;
    padding-left: 20px;
    padding-right: 20px;
}

.multiple-download-links-box {
    display: flex;
    flex-flow: column wrap;
    margin-left: auto;
}

.multiple-download-links-box > *:not(:last-child) {
    margin-bottom: 8px;
}

.image-desc a {
    color: white;
    text-decoration: none;
    background-color: #195193;
    padding: 3px 9px;
    border-radius: 15px;
    margin-left: auto;
    display: block;
    text-align: center;
}

.image-desc a:hover {
    background-color: #3067b4;
}

.date {
    color: #737373;
}