body {
    background-color: rgb(15, 35, 52);
}

/*Logo styling*/
#header a img {
    height: 70px;
}

/*Header's styling and floating*/
#header-logo {
    float: left;
}

#header-nav {
    float: left;
    padding-top: 15px;
    box-sizing: border-box;
}

/*Buttons' default styling*/
#header-nav a {
    text-decoration: none;
    font-size: 30px;
    margin-left: 40px;
    transition: 0.3s;
    padding: 3px 3px 3px 3px;

}

/*Cyberpunk's link's styling*/
#cyberpunk-nav {
    font-family: 'Kode Mono';
    color: rgb(255, 255, 83);
    transition: 0.3s;
    transition-timing-function: ease-in-out;
}

#cyberpunk-nav:hover {
    transition: 0.3s;
    border-bottom: solid 7px #04e08b;
    border-left: solid 7px #b263e3;
    transition-timing-function: ease-in-out;
}

/*Titanfall's link's styling*/
#titanfall-nav {
    font-family: 'Protest Guerrilla';
    color: #9baac8;
    transition: 0.3s;
    transition-timing-function: ease-in-out;
}

#titanfall-nav:hover {
    transition: 0.3s;
    border-left: solid 10px #9baac8;
    border-right: solid 10px #9baac8;
    transition-timing-function: ease-in-out;
}

/*Among Trees' link's styling*/
#amongtrees-nav {
    font-family: 'Dosis';
    color: white;
    transition: 0.3s;
    border-bottom-right-radius: 220px 10px;
    border-bottom-left-radius:10px 220px;
    transition-timing-function: ease-in-out;
}

#amongtrees-nav:hover {
    transition: 0.3s;
    color: rgb(255, 235, 163);
    border-bottom: solid 2px rgb(255, 255, 163);
    transition-timing-function: ease-in-out;
}

/*SWJFO's link's styling*/
#starwars-nav {
    font-family: 'Orbitron';
    color: lightblue;
    transition: 0.3s;
    transition-timing-function: ease-in-out;
}

#starwars-nav:hover {
    transition: 0.3s;
    color: rgb(77, 210, 86);
    border-bottom: solid 5px rgb(237, 58, 58);
    border-top: solid 5px lightblue;
    transition-timing-function: ease-in-out;
}

/*Subnautica's link's*/
#subnautica-nav {
    font-family: 'Days One';
    color: rgb(240, 174, 52);
    transition: 0.3s;
    transition-timing-function: ease-in-out;
}

#subnautica-nav:hover {
    transition: 0.3s;
    text-shadow: 4px 4px rgb(61, 61, 128);
    transition-timing-function: ease-in-out;
}

/*Main container styling*/
#content {
    clear: both;
    width: 100%;
    height: 590px;
}

#content-frame {
    border: none;
}

#footer {
    font-size: 20px;
    color: white;
    font-family: 'Dosis';
    text-align: center;
}