html, body {
    overflow: hidden;
    height: 100%;
    width: 100%;
    position: fixed;
}

.main{
    margin-left: 10vw;
    margin-right: 10vw;
}

#slides-container{
    position: relative;
    top: 0;
    transition: all 1.3s ease;
    transition-delay: 0.15s;
}

@font-face {
    font-family: Players;
    src: local("Players.ttf"),url("../Fonts/Players.ttf") format('truetype');
}

.background-total {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: -1;
    background: linear-gradient(45deg, rgba(0, 106, 219, 0.5), rgba(175, 41, 190, 0.5), rgba(97, 188, 129, 0.5), rgba(213, 95, 22, 0.5));
}

.mySlides{
    position: relative;
    height: 100vh;
}

* {
    font-family: Players;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.31);
}

h4 {
    font-size: 95px;
    letter-spacing: 25px;
    font-weight: 300;
}
h3 {
    font-size: 70px;
    letter-spacing: 25px;
    font-weight: 300;
}
h2 {
    font-size: 45px;
}
h1 {
    font-size: 25px;
}
p {
    font-family: Arial;
    font-size: 20px;
}

#startup {
    position: absolute;
    background-color: #212529;
    overflow: hidden;
    width: 100vw;
    z-index:10;
    height: 100%;
    transform: translate3d(0,0,0);
}
#startup.active{
    transition: .7s ease;
    transition-delay: 0.2s;
    transform: translate3d(0,-100%,0);
}
#startup-wipe {
    position: absolute;
    background-color: #495854;
    overflow: hidden;
    width: 100vw;
    height: 100%;
    z-index:9;
    transform: translate3d(0,0,0);
}
#startup-wipe.active{
    transition: .7s ease;
    transition-delay: 0.25s;
    transform: translate3d(0,-100%,0);
}
#loading{
    position: absolute;
    z-index: 12;
    width:100vw;
    height:100%;
}
#loading.active{
    display: none;
}
#loading h2{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #93d8e0;
    opacity: 0;
    animation-name: blinker;
    animation-duration: 1s;
    animation-timing-function: ease-in;
    animation-iteration-count: infinite;
}


