body {
    background-color: black;
    margin: 0;
    color: white;
    font-family: "Titillium Web", sans-serif;
}

h1 {
    margin: 0;
}

h2 {
    font-family: "DM Serif Display", serif;
    margin-bottom: 0;
}

h3 {
    margin-top: 5px;
    margin-bottom: 5px;
    font-family: "DM Serif Display", serif;
}

#header {
    width: 100%;
    height: 230px;
    background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.85)), url("media/header-bg.jpg");
    background-size: cover;
    background-position: center;
    text-align: center;
}

    #header > a > img {
        width: 870px;
        filter: brightness(100%) drop-shadow(0px 0px 4px black);
        transform: scale(100%);
        transition-property: filter, transform;
        transition-duration: 1s;
    }

        #header > a > img:hover {
            filter: brightness(110%) drop-shadow(0px 0px 4px black);
            transform: scale(102%);
        }


#main {
    width: fit-content;
    height: 100%;
    display: flex;
    flex-direction:row;
    margin: 0 auto;
}

#content {
    width: 580px;
    height: 100%;
    background-color: #171717;
    padding: 0 10px;
}

#sidebar {
    width: 250px;
    height: 100%;
    margin-left: 10px;
}

.sidebar-section {
    width: 250px;
    padding: 10px;
    background-color: #171717;
    margin-bottom: 10px;
}
.sidebar-section > iframe{
    margin:0 auto;
}
.sidebar-section > .people-list > a{
    text-decoration:none;
    color:inherit;
}
    .sidebar-section > .people-list > a > .person > p {
        margin-bottom:1em;
    }
        .person {
    width: 230px;
    padding: 2px 10px;
    background: linear-gradient(rgba(50,50,50, 0.5),rgba(40,40,40, 0.2));
    border-radius: 6px;
    margin: 5px auto;
}

    .person > p {
        margin-top: 5px;
    }

    .person:hover {
        background: linear-gradient(rgba(70,70,70, 0.6),rgba(50,50,50, 0.3));
    }

        .person:hover > h3 {
            text-shadow: 0 0px 2px gold;
        }

.inline {
    width: 200px;
    height: auto;
    float: left;
    margin: 10px 10px 0 0;
    filter: brightness(100%);
    transform:scale(100%);
    transition-property: filter, transform;
    transition-duration: 0.5s;

}

    .inline:hover {
        filter: brightness(110%);
        transform: scale(102%);
    }
.right {
    float: right;
    margin: 10px 0 0 10px;
}

.domain {
    float: left;
    width: 250px;
    height: 100%;
    background: linear-gradient(rgba(120,90,0, 0.8),rgba(40,40,0, 1)), url("media/bg-1.jpg");
    background-size: cover;
    background-position: center;
    padding: 10px;
    border: 4px solid #ffbf00;
    border-radius: 8px;
    margin-right: 10px;
}

    .domain > p {
        margin-top: 0;
        text-shadow: 0 0 2px black;
    }

.button {
    text-align: center;
    background-color: dimgray;
    margin: 0 auto;
    border: 2px solid gray;
    border-radius: 4px;
    color: white;
    text-shadow: 0 0 2px black;
}

    .button:hover {
        border: 2px solid white;
        filter: brightness(103%);
    }

    .button > p {
        margin: 2px 5px;
    }

.yellow {
    background-color: #ffbf00;
}

.button-link {
    text-decoration: none;
}

.domain > a {
    text-decoration: none;
}

@media (max-width:920px) {
    #main {
        flex-direction: column;
    }

    #sidebar {
        width: 580px;
        margin-left: 0;
    }

    .sidebar-section {
        width: 580px;
    }

    .people-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .person {
        margin: 5px 0;
        padding: 0 5px;
    }

    #header {
    }

        #header > a > img {
            width: 100%;
        }
}

@media (max-width:620px) {
    #content {
        width: 92vw;
    }

    #sidebar {
        width: 92vw;
    }

    .sidebar-section {
        width: 92vw;
    }

    iframe {
        width: 92vw;
    }
}

@media (max-width:240px) {
    .person {
        width: 90vw;
    }
}