a:link {
    color: bisque;
}

a:visited {
    color: cyan;
}

a:hover {
    color: lightgreen;
}

a:active {
    color: hotpink;
}

body {
    background-color: hsl(248, 11%, 10%);
    color: whitesmoke;
    font: 1em sans-serif;
    text-align: justify;
}
.main-box {
    background-color: rgb(34, 33, 41);
    width: 50%;
    margin: auto;
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .main-box {
        width: 100%;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .main-box {
        width: 100%;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .main-box {
        width: 85%;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .main-box {
        width: 70%;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .main-box {
        width: 60%;
    }
}

@media only screen and (min-width: 1450px) {
    .main-box {
        width: 50%;
    }
}

figure{
    max-width: 100%;
    margin-left: 0;
    display:table;
}
img{
    max-width: 100%;
}
video{
    max-width: 100%;
}
figcaption{
    color: #bbbbcc;
    font-style: italic;
    display:table-caption;
    caption-side:bottom;
}

#site-title{
    float: left;
}
#site-title > a{
    color: #ffffff;
    font-size: 30px;
    text-decoration: none;
}
#site-title > a:hover{
    color: bisque;
}

#header {
    height: 80px;
}
/* NAVIGATION BAR */
#site-nav {
    background-color: #2f2d39;
    overflow: hidden;
    float: right;
    margin-left: 20px;
}
#site-nav > ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #2f2d39;
}
#site-nav > ul > li {
    float: left;
}

#site-nav a {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

#site-nav a:hover, .dropdown:hover, .dropdown:hover > .dropbtn{
    background-color: #ddd;
    color: black !important;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #2f2d39;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
  
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}
  
.dropdown-content a:hover {
    background-color: #2f2d39;
}
  
#site-nav  > ul > li.dropdown:hover > .dropdown-content {
    display: block;
}#site-nav  > ul > li.dropdown:hover > .dropdown-content > a {
    display: block;
}

.dropbtn:after{

    font-size: 0.75em;
    content: " ▼";
}

@media only screen and (max-width: 820px) {
    #site-title {
        float: none;
    }
    #site-nav {
        float: none;
        margin-left: 0;
        margin-top: 10px;
    }
    #header {
        height: 150px;
    }
}

.home-button{
    width: 100%;
    max-width: 600px;
    position: relative;
    background-color: #aeaeca;
    margin-bottom: 20px;
}
.home-button:hover{
    background-color: cornflowerblue;
}
.home-button > a {
    font-size: 50px;
    width: 100%;
    height: 100px;
    text-align: center;
    display: inline-block;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}
.home-button > a > img {
    position: absolute;
    top: 25px;
    display: block;
    width: 50px;
}
.home-button > a > .button-text {
    position: absolute;
    top: 24px;
    left: 80px;
    right: 10px;
    color: rgb(34, 33, 41);
}
.home-button-logo{
    image-rendering: crisp-edges;
    image-rendering: pixelated;
}

@media only screen and (max-width: 570px) {
    .home-button > a {
        font-size: 36px;
    }
}