html {
    background: #EEF4ED;
}

.centered {
    display: flex;
    align-items: center;
    justify-content: center;
}

#head {
    position: fixed;
    left: 50%;
    transform: translate(-50%);
    transition: all .5s ease-in-out .8s;
}

#big {
    color: #FF6B35;

    font-family: League Gothic;
    font-size: 650px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    letter-spacing: 104px;

    margin-right: -250px;

    transition: all .7s ease-in-out;
}

#smol {
    color: #FF6B35;

    font-family: Montserrat;
    font-size: 80px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;

    transform: rotate(90deg);
    margin: 0;

    transition: all .7s ease-in-out;
}

header img {
    position: fixed;
    z-index: -1;
    border: #FFF 4px solid;
    padding: 15px;
    transition: all .5s ease-in-out;
}

#action-container {
    position: fixed;
    left: 18%;
    bottom: 15%;
    transition: all .2s ease-in-out;
}

/* Let's go hover interaction */
#action-container:hover {
    transform: scale(1.2);
    cursor: pointer;
} #action-container:hover + #navs #about{
    color: #FFF;
    height: 264px;
    transition: all .3s ease-in-out;
} #action-container:hover ~ #navs #projects{
    color: #FFF;
    height: 264px;
    transition: all .5s ease-in-out;
} #action-container:hover ~ #navs #contact{
    color: #FFF;
    height: 264px;
    transition: all .7s ease-in-out;
} 

#action {
    position: relative;
    top: 30px;
    left: 30px;

    color: #4169E1;
    font-family: "Source Sans 3";
    font-size: 32px;
    font-style: normal;
    font-weight: bold;
    line-height: normal;
}

#navs:hover #about, #navs:hover #projects, #navs:hover #contact{
    color: #FFF;
    height:264px
}

#navs {
    width: 500px;
    height: 264px;

    display: flex;
    justify-content: space-around;
    align-items: flex-end;

    position: fixed;
    bottom: -10px;
    left: 30vw;

    transition: all .5s ease-in-out .5s;
}

.nav {
    color: #4169E1;

    font-family: "Source Sans 3";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    padding-top: 14px;

    border-radius: 10px;
    background: #4169E1;

    width: 127px;
    height: 20px;
} .navHover:hover {
    transition: all .2s ease-in-out;
    transform: scale(1.1);
    background: #3a58b3;
    cursor: pointer;
} .navHover:hover .info {
    background: #3a58b3;
    color: #ffffff00;
} .navHover:active {
    transform: scale(1);
}
#about {
    transition: height .3s, color .3s, transform .2s ease-in-out;
}
#projects {
    transition: height .5s, color .3s, transform .2s ease-in-out;
}
#contact {
    transition: height .7s, color .3s, transform .2s ease-in-out;
}

.info {
    height: 100%;
    width: 0%;
    border-radius: 10px;
    background: #4169E1;

    color: #ffffff00;
    padding: 30px 50px 30px 30px;
    text-align: left;
    transition: width .8s, color .3s ease-in-out;
}

/* Fonts */
/* Source Sans 3 Regular */
@font-face {
    font-family: "Source Sans 3";
    src: url(fonts/SourceSans3-Regular.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Source Sans 3 Bold */
@font-face {
    font-family: "Source Sans 3";
    src: url(fonts/SourceSans3-Bold.ttf) format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* League Gothic Regular */
@font-face {
    font-family: "League Gothic";
    src: url(fonts/LeagueGothic-Regular.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* League Gothic Condensed */
@font-face {
    font-family: "League Gothic";
    src: url(fonts/LeagueGothic_Condensed-Regular.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
    font-stretch: condensed;
}

/* Montserrat Regular */
@font-face {
    font-family: "Montserrat";
    src: url(fonts/Montserrat-Regular.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Montserrat Regular */
@font-face {
    font-family: "Montserrat";
    src: url(fonts/Montserrat-SemiBold.ttf) format('truetype');
    font-weight: 600;
    font-style: normal;
}