@font-face {
    font-family: farcry;
    src: url("FAR.TTF");
}

* {
    padding: 0;
    margin: 0;
}

html {
    background: #000;
}


body{
    margin: auto;
    background-color: #02090a;
    user-select: none;
    user-zoom: none;
    font-family: Arial;
    
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.container{
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #101010;
    color:white;
    transition: 0.2s;
}

.container #gradient-background{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background:linear-gradient(45deg,#9291d2,#fec8cb);
}

.container .modes{
    position: fixed;
    left: 50%;
    top: 50%;
    width: 250px;
    height: auto;
    transform: translate(-50%,-50%);
}

.container .background-image{
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.container .background-image.amogus{
    background-image: url("../images/backgrounds/amogus.jpg");
}

.container.amogus .twerker{
    position: fixed;
    left: 50%;
    top: 50%;
    width: 80vw;
    height: 80vw;
    max-width: 700px;
    max-height: 700px;
    transform: translate(-50%,calc(-50% + 150px));
    background-image: url("../images/amogus/twerker.gif");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.container .modes #pig{
    position: relative;
    left: 0px;
    top: 0px;
    width: 250px;
    height: 250px;

    background-image: url("../images/startup/pigstop.webp");
    background-position: center;
    background-size: 200px 200px;
    background-repeat: no-repeat;
}

.container .modes .podium{
    position: fixed;
    left: 50%;
    top: 180px;
    width: 140px;
    height: 35px;
    transform: translateX(-50%);
    background-color: rgba(0,0,0,0.2);
    border-radius: 50%;
	box-shadow: 0px 10px 10px rgba(0,0,0,0.2);
}

.container .modes .other{
    position: relative;
    left: 0px;
    top: 20px;
    width: 250px;
    height: 50px;
    text-align: center;
}

.container .modes .other .item{
    position: relative;
    width: 50px;
    height: 50px;
    background-color: transparent;
    border-radius: 50%;
    margin: 0px 5px;
    border: none;
    transition: 0.2s;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.container .modes .other .item:hover{
    background-color: rgba(0,0,0,0.2);
}

.container .modes .other .item.wolf{
    background-image: url("../images/ui/wolf.png");
}

.container .modes .other .item.amogus{
    background-image: url("../images/ui/amogus.png");
}

.container .modes .other .item.farcry{
    background-image: url("../images/ui/farcry.png");
    top: 10px;
}

.container .modes .other .item.more{
    background-image: url("../images/ui/tapecorps.svg");
    background-size: 30px 30px;
}

.container .back{
    position: fixed;
    left: 15px;
    top: 15px;
    width: 5vh;
    height: 5vh;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    border:none;
    background-image: url("../images/ui/back.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: 0.2s;
    z-index: 100;
}
.container .back:hover{
    filter: invert(1);
}

video{
    position: fixed;
    left: 50%;
    bottom: 0px;
    min-width: 100%;
    min-height: 100%;
    transform: translateX(-50%);
}

.container .hero-slider{
    position: fixed;
    left: 50%;
    top: 50%;
    width: calc(300% + 100px);
    height: 100px;
    transform: translate(-50%,-50%);
}

.container .hero{
    position: absolute;
    left: 0%;
    top: 50%;
    width: 100px;
    height: 100px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: 5s linear;
}

.uiad.bottom{
    position: fixed;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 87px;
}
.uiad.bottom img{
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform:translateX(-50%);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    transition: 0.2s;
}
.uiad.bottom img:hover{
    transform:scale(1.25) translate(calc(-50% + 16px),-8px);
}

@media only screen and (max-width: 700px) {
    .container .modes{
        position: fixed;
        left: 50%;
        top: 50%;
        width: 250px;
        height: auto;
        transform: translate(-50%,-50%) scale(1.2);
    }
}