@font-face {
    font-family: Roboto-Black;
    src: url(../fonts/Roboto-Black.ttf);
}

@font-face {
    font-family: Roboto;
    src: url(../fonts/Roboto-Regular.ttf);
}

* {
    box-sizing: border-box;
}

/* ================================================================ */
/* Animations */
@keyframes slide-in-right {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0%);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    60% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* ================================================================ */
/* Main Content */
body {
    padding: 0;
    margin: 0;
    font-family: Roboto;
    overflow-x: hidden;
    background-image: url(../img/FennecImage.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 100vh;
}

main {
    padding: 0 6%;
}

.main-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 0;
}

/* Remove scrollbar */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

/* Santa Goat logo load in */
.loader-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transition: top ease 0.5s;
    animation: 1s ease-out 0s 1 fadeOut;
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 15%;
    height: auto;
    position: relative;
    display: inline-block;
}

/* Youtube video */
.video-box {
    border: none;
    margin-bottom: -10px;
    position: absolute;
    width: 100%;
    height: 100%;
}

.video-container {
    margin-top: 9%;
    animation: 1s ease-out 0.4s 1 fadeIn;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 28.6%;
    margin-right: 3em;
}

/* Title under the video */
h2{
    color: rgb(255, 255, 255);
    font-family: Roboto-Black;
    font-size: 2.3em;
    padding: 12px 0px 12px 12px;
    letter-spacing: 1.3px;
    background-color: rgba(0, 0, 0, 0.775);
    margin-top: 0;
    position: absolute;
    z-index: 0;
    width: 100%;
    bottom: -2.8em;
    border-top: rgb(255, 255, 255) 7px solid;
}

/* Logo + description */
.logo{
    width: 80%;
    height: 0 auto;
    margin-top: 3em;
}

p{
    color: rgb(255, 255, 255);
    font-size: 1.4em;
    background-color: rgba(0, 0, 0, 0.850);
    padding: 2em 8em 2em 2em;
    letter-spacing: 0.8px;
    line-height: 1.5;
}

.description-container{
    margin: 0 -8.2em 0 3em;
    width: 100%;
    animation: 1.4s ease-out 0.4s 1 slide-in-right;
}

/* Gradient */
.gradient{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0) 100%);
}

/* ================================================================ */
/* Menu Footer */
a {
    text-decoration: none;
    color: rgb(255, 255, 255);
}

nav{
    display: flex;
    justify-content: center;
    margin-top: 9em;
    text-shadow: #000000b6 4px 4px 6px;
}

.nav-btn{
    display: flex;
    white-space: nowrap;
}

/* Buttons */
.btn-list{
    user-select: none;
}

.btns-right{
    display: flex;
    list-style: none;
    position: absolute;
    right: 0;
    bottom: 0;
    margin-right: 5.5em;
    margin-bottom: 4em;
}

.btns-left {
    display: flex;
    list-style: none;
    position: absolute;
    left: 0;
    bottom: 0;
    margin-left: 5.5em;
    margin-bottom: 4em;
}

.btn-center {
    display: flex;
    list-style: none;
    position: absolute;
    left: 0;
    bottom: 0;
    margin-left: 68em;
    margin-bottom: 5.2em;
}

.btn-menu{
    font-family: Roboto-Black;
    font-size: 1.1em;
    letter-spacing: 1px;
    border: solid 4px rgb(255, 255, 255);
    background-color: #00000073;
    border-radius: 50px;
    padding: 15px 20px 13px 20px;
    margin: 0 1.3em;
    color: #fff;
    cursor: pointer;
}

.btn-menu:hover, .btn-menu-last:hover{
    background-color: rgb(59, 59, 59);
    transition: ease 140ms;
}

.btn-menu-last {
    font-family: Roboto-Black;
    font-size: 1.1em;
    letter-spacing: 1px;
    border: solid 4px rgb(255, 255, 255);
    background-color: #00000073;
    border-radius: 50px;
    padding: 15px 20px 0px 20px;
    margin: 0 1.3em;
}

/* Steam + Discord */
.btn-social{
    font-size: 2.9em;
    margin: 0 0.4em 0 0.4em;
}

.btn-social:hover{
    transition: ease 300ms;
    transform: scale(1.2);
}

/* Copyright */
h3{
    color: rgb(255, 255, 255);
    letter-spacing: 1.2px;
    font-size: 0.8em;
    margin: 1em 1.3em 0 1.3em;
}

.btns-names:hover {
    transition: ease 140ms;
    color: rgb(219, 86, 34);
}

/* ================================================================ */
/* 2K */
@media (min-width: 2160px) {
        /* Title under the video */
    h2 {
        font-size: 2.6em;
        padding: 16px 0px 16px 16px;
    }
    /* Logo + description */
    .logo {
        width: 80%;
        height: 0 auto;
        margin-top: 3em;
    }
    p {
        font-size: 2em;
        padding: 2em 8em 2em 2em;
    }
    .description-container {
        margin: 0 -10.7em 0 7em;
    }
    .video-container {
        padding-bottom: 28.2%;
}
    /* Menu Footer */
    nav {
        margin-top: 14em;
    }
    /* Buttons */
    .btn-menu{
        font-size: 1.7em;
        border: solid 5.5px rgb(255, 255, 255);
        padding: 12.5px 30px 12.5px 30px;
        margin: 0 1.3em;
    }
    .btn-menu-last {
        font-size: 1.7em;
        border: solid 5.5px rgb(255, 255, 255);
        padding: 12.5px 30px 0px 30px;
        margin: 0 1.3em;
    }
    /* Steam + Discord */
    .btn-social {
        font-size: 3.5em;
        margin: 0 0.4em 0 0.4em;
    }
    /* Copyright */
    h3 {
        font-size: 1.1em;
        margin: 0.6em 1.3em 0 1.3em;
    }
    .btn-center {
        display: flex;
        list-style: none;
        position: absolute;
        left: 0;
        bottom: 0;
        margin-left: 68.5em;
        margin-bottom: 5.3em;
    }
}
/* ================================================================ */
/* Responsive Nav */
@media (max-width: 1800px) {
    p {
        font-size: 1.3em;
        padding: 2em 6em 2em 2em;
    }
    /* Menu Footer */
    .btns-right{
        right: auto;
        left: 0;
        bottom: 0;
        margin-left: 5.5em;
        margin-bottom: 9em;
    }
    .btns-left {
        left: 0;
        bottom: 0;
        margin-left: 5.5em;
        margin-bottom: 4em;
    }
}
@media (max-width: 1300px) {
    p {
        font-size: 1.3em;
        padding: 2em 6em 2em 2em;
    }
}
@media (max-width: 2550px) {
    /* Menu Footer */
    .btn-menu{
        font-size: 1.1em;
        border: solid 3.5px rgb(255, 255, 255);
        padding: 15px 20px 13px 20px;
        margin: 0 1.3em;
}
    .btn-menu-last {
        font-size: 1.1em;
        border: solid 3.5px rgb(255, 255, 255);
        padding: 15px 20px 0px 20px;
        margin: 0 1.3em;
}
    /* Steam + Discord */
    .btn-social {
        font-size: 2.9em;
        margin: 0 0.4em 0 0.4em;
    }
    /* Copyright */
    h3 {
        font-size: 0.8em;
        margin: 1em 1.3em 0 1.3em;
    }
    .btn-center {
        display: flex;
        list-style: none;
        position: absolute;
        left: 0;
        bottom: 0;
        margin-left: 48em;
        margin-bottom: 5.2em;
    }
}
/* ================================================================ */
/* iPad */
@media (max-width: 768px) {
    body {
        width: 100vw;
        height: 100vh;
    }
    /* Main Content */
    main {
        padding: 0 0%;
    }
    .main-container {
        display: flex;
        flex-direction: column-reverse;
    }
    /* Santa Goat logo load in */
    .loader-wrapper {
        position: fixed;
    }
    /* Youtube video */
    .video-container {
        margin-top: 3%;
        width: 80%;
        height: 0;
        padding-bottom: 44.95%;
        margin-right: 0em;
    }
    /* Title under the video */
    h2 {
        font-size: 2em;
        padding: 12px 0px 12px 12px;
        letter-spacing: 1.3px;
        margin-top: 0;
        bottom: -2.8em;
    }
    /* Logo + description */
    .logo {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 70%;
        margin-top: 2em;
        margin-bottom: 0.5em;
    }
    p {
        font-size: 1em;
        padding: 1.5em 4.5em 1.5em 1.5em;
        margin-left: 10%;
    }
    .description-container {
        margin: 1em 0em 0em 0em;
    }
    /* Menu Footer */
    nav {
        display: block;
        justify-content: center;
        margin-top: -2em;
    }
    /* Buttons */
    .btn-menu {
        font-size: 1em;
        border: solid 2.5px rgb(255, 255, 255);
        padding: 6px 10px 5px 10px;
        margin: 0 0.5em 0em 0.5em;
        letter-spacing: 0px;
    }
    .btn-menu-last {
        font-size: 1em;
        border: solid 2.5px rgb(255, 255, 255);
        padding: 6.5px 10px 5px 10px;
        margin: 0 0.3em 0em 0.3em;
        letter-spacing: 0px;
    }
    .btns-right {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 6em;
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 100%;
        text-align: center;
    }
    .btns-left {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 3em;
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 100%;
        text-align: center;
    }
    /* Steam + Discord */
    .btn-social {
        font-size: 1.8em;
        margin: 0 0.3em 0 0.3em;
    }
    /* Copyright */
    h3 {
        letter-spacing: 0px;
        font-size: 0.7em;
        margin: 0 0em 0 0em;
        padding: 9px 0 0 0;
    }
    .btn-center {
        left: 0;
        bottom: 0;
        margin-left: 0em;
        margin-bottom: 1.3em;
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 100%;
        text-align: center;
    }
}
/* ================================================================ */
/* iPhone XR */
@media (max-width: 414px) {
    body {
        height: 135vh;
    }
    /* Youtube video */
    .video-container {
        margin-top: 10%;
        width: 80%;
        height: 0;
        padding-bottom: 44.95%;
        margin-right: 0em;
    }
    /* Title under the video */
    h2 {
        font-size: 1.7em;
        text-align: center;
        padding: 12px 0px 12px 0px;
        letter-spacing: 1.3px;
        margin-top: 0;
        bottom: -3.2em;
    }
    /* Logo + description */
    .logo {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 80%;
        margin-top: 2em;
        margin-bottom: 0.5em;
    }
    p {
        font-size: 1.5em;
        padding: 1em 2em 1em 1em;
        margin-left: 10%;
    }
    .description-container {
        margin: 1em 0em 0em 0em;
    }
    /* Menu Footer */
    nav {
        display: block;
        justify-content: center;
    }
    /* Buttons */
    .btn-menu {
        font-size: 0.7em;
        border: solid 2.5px rgb(255, 255, 255);
        padding: 5px 10px 5px 10px;
        margin: 0 0.5em 0em 0.5em;
        letter-spacing: 0px;
    }
    .btn-menu-last {
        font-size: 0.9em;
        border: solid 3px rgb(255, 255, 255);
        padding: 6.5px 25px 5px 25px;
        margin: 0 0.5em 0em 0.5em;
        letter-spacing: 0px;
    }
    .btns-right {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: -18.4em;
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 100%;
        text-align: center;
    }
    .btns-left {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: -21em;
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 100%;
        text-align: center;
    }
    /* Steam + Discord */
    .btn-social {
        font-size: 2em;
        margin: 0 0.3em 0 0.3em;
    }
    /* Copyright */
    h3 {
        letter-spacing: 0px;
        font-size: 0.7em;
        margin: 0 0em 0 0em;
        padding: 9px 0 0 0;
    }
    .btn-center {
        left: 0;
        bottom: 0;
        margin-left: 0em;
        margin-bottom: -23em;
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 100%;
        text-align: center;
    }
}
/* ================================================================ */
/* iPhone SE */
@media (max-width: 375px) {
    body {
        height: 150vh;
    }
    /* Youtube video */
    .video-container {
        margin-top: 5%;
    }
    /* Logo + description */
    p {
        font-size: 1.4em;
        padding: 1em 2em 1em 1em;
        margin-left: 10%;
    }
}
