html {
    padding: 0;
    background-image: url('banner.jpg');
    background-size: cover;
}

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'PT Sans', sans-serif;
}

*:not(#loadingScreen, #home) {
    z-index: -10;
}

#loadingScreen {
    position: fixed;
    z-index: 10;
    height: 100vh;
    width: 100vw;
    background: hsla(0, 0%, 10%, .75);
    transition: opacity 200ms;
}

#loadingSentence {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -130%);
    color: floralwhite;
    font-size: 220%;
    /* DBG */
    /* visibility: hidden; */
}

#loadingScreenH1 {
    transition: opacity 400ms;
    opacity: 0;
}

#home svg {
    z-index: 0;
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    top: 0;
    bottom: 0;
    margin-bottom: auto;
    margin-top: auto;
}

#nextBtn {
    position: fixed;
    transform: rotate(-90deg) scale(3);
    right: 40px;
    top: 100px;
    cursor: pointer;
    transition: opacity 200ms;
}

#nextBtn:hover {
    animation: shake 500ms ease-in-out;
}

#lastBtn {
    position: fixed;
    transform: rotate(90deg) scale(3);
    left: 40px;
    top: 100px;
    cursor: pointer;
    transition: opacity 200ms;
}

#lastBtn:hover {
    animation: shakeLeft 500ms ease-in-out;
}

@keyframes shake {
    0% {
        transform: rotate(-90deg) scale(3);
    }
    33% {
        transform: rotate(-135deg) scale(3);
    }
    66% {
        transform: rotate(-45deg) scale(3);
    }
    100% {
        transform: rotate(-90deg) scale(3);
    }
}

@keyframes shakeLeft {
    0% {
        transform: rotate(90deg) scale(3);
    }
    33% {
        transform: rotate(135deg) scale(3);
    }
    66% {
        transform: rotate(45deg) scale(3);
    }
    100% {
        transform: rotate(90deg) scale(3);
    }
}

@keyframes pulse {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(0.95);
    }
}

.pulse {
    animation: pulse 3s cubic-bezier(.17, .67, .83, .67) infinite alternate;
}

#impress {
    color: floralwhite;
    text-decoration: underline;
    position: absolute;
    bottom: 5%;
    left: 1%;
    cursor: pointer;
}

#modwrap {
    background-color: hsla(0, 0%, 90%, 0.75);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

#modal {
    width: 35%;
    height: 40%;
    background: hsla(203, 89%, 75%, .3);
    position: absolute;
    top: 20%;
    left: 32.5%;
    text-align: center;
    color: floralwhite;
    font-size: 1.5em;
    border-radius: 30px;
}

#closeMod {
    width: 25%;
    height: 17.5%;
    background: hsla(203, 89%, 75%, .3);
    margin: 0 auto;
    cursor: pointer;
    color: floralwhite;
}

#firstWarning {
    color: floralwhite;
    background: hsla(0, 53%, 58%, 1);
    border-radius: 25px;
    line-height: 25px;
    height: 25px;
    display: none;
    width: 100px;
    position: absolute;
    top: 160;
    left: 3;
    text-align: center;
}

#output {
    position: fixed;
    transition: all 500ms;
    left: 100%;
}

#discordPopUp {
    position: absolute;
    width: 35vw;
    height: 50vh;
    left: 50%;
    top: 10vh;
    transform: translate(-50%, 0);
    z-index: 13;
    transition: opacity 200ms, top 200ms;
    overflow: hidden;
    /* DBG */
    /* background: lightcoral; */
    opacity: 0.0;
    visibility: hidden; 
} 

#discordPopUp .left {
    position: relative;
    width: 30%;
    height: 100%;
    float: left;
}

#discordPopUp .right {
    position: relative;
    float: left;
    width: 70%;
    margin: auto;
    height: 100%;
    /* background-color: lightblue; */
    color: floralwhite;
    text-align: center;
    font-size: 1.2em;
}

#discordPopUp .right p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -77%);
    margin: 0;
}

#discClose {
    position: absolute;
    top: -2%;
    width: 96%;
    left: 2%;
    height: 14%;
    text-align: center;
    border: none;
    border-bottom: 4px solid floralwhite;
    background: transparent;
    color: floralwhite;
    cursor: pointer;
    z-index: 25;
    transition: all 150ms;
}

#discClose:hover {
    background-color: floralwhite;
    color: #414346;
}

.left a {
    position: absolute;
    border-radius: 50%;
    width: 128px;
    top: 50%;
    left: 50%;
    transform: translate(-10%, -50%);
}

.left a img {
    border-radius: 50%;
}

#wrapBtn {
    position: absolute;
    bottom: 0;
    height: 33%;
    width: 100%;
    /* background-color: lightcoral; */
}

#wrapBtn button {
    background-color: transparent;
    border: 4px solid floralwhite;
    height: 4.8vh;
    width: 40%;
    border-radius: 4.8vh;
    font-size: 1.35em;
    color: floralwhite;
    transition: all 200ms;
}

#wrapBtn button:hover {
    color: #414346;
    background-color: floralwhite;
    cursor: pointer;
}

#closer {
    position: absolute;
    z-index: 12;
    background: transparent;
    width: 100vw;
    height: 100vh;
    visibility: hidden
}