html {
    margin: 0;
    padding: 0;
    
}

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: black;
    padding-top: 110px;
    display: grid;
    justify-content: center;
    row-gap: 40px;
}

.mapBody {
    width: 100%;
    height: calc(100% - 80px);
    position: fixed;
    margin: 0px;
    padding-top: 80px;
    justify-content: unset;
}

.vid {
    width: 100%;
    height: 100vh;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #191919;
    z-index: 200;
}

header {
    height: 80px;
    width: 100%;
    background: #191919;
    position: fixed;
    top: 0;
    z-index: 100;
    text-align: center;
    box-shadow: 0px 10px 13px -7px #000000, 0px 10px 30px 5px rgba(13,13,13,0.6);

}

.logo {
    height: 80px;
    transition: 0.5s;
}

.logo:hover {
    height: 85px;
}

.glassUI {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    text-align: center;
    padding: 40px;
    transition: 0.5s;
}

.glassUI:hover {
    background: rgba(0, 0, 0, 0.15);
}

.glassUIside {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    text-align: center;
    padding: 30px 15px 30px 15px;
    transition: 0.5s;
}

.glassUIside:hover {
    background: rgba(0, 0, 0, 0.15);
}

.glass2 {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    text-align: center;
    padding: 20px;
    transition: 0.5s;
}

.glass2:hover {
    background: rgba(75, 150, 255, 0.15);
    padding-right: 35px;
    padding-left: 35px;
    transition: 0.5s;
}

h1 {
    font-size: 140px;
    color: white;
    font-family: Carme;
    transition: 1.5s;
    margin-bottom: 10px;
    margin-top: 0px;
}

h3 {
    font-size: 25px;
    margin: 0px;
    color: white;
    font-family: Montserrat;
    transition: 1.5s;
    font-weight: 100;
}

#back-video {
    position: fixed;
    top: 80px;
    z-index: -10;
    filter: blur(1px);
}

@media (min-aspect-ratio: 16/9) {
    #back-video {
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio: 16/9) {
    #back-video {
        width: auto;
        height: 100%;
    }
}

.button-85 {
    padding: 1em 3em;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    margin-top: 20px;
    margin-bottom: 20px;
    transition: 0.5s;
}

.button-85:hover {padding: 1.2em 3.4em;}

.button-85:before {
    content: "";
    background: linear-gradient(
        45deg,
        #ff0000,
        #ff7300,
        #fffb00,
        #48ff00,
        #00ffd5,
        #002bff,
        #7a00ff,
        #ff00c8,
        #ff0000
    );
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing-button-85 20s linear infinite;
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
}

.button3 {
    display: inline-block;
    outline: none;
    cursor: pointer;
    font-size: 14px;
    line-height: 0;
    border-radius: 500px;
    transition-property: background-color,border-color,color,box-shadow,filter;
    transition-duration: .3s;
    border: 1px solid transparent;
    min-width: 160px;
    white-space: normal;
    font-weight: 700;
    text-align: center;
    padding: 16px 14px 18px;
    color: #ffffff;
    box-shadow: inset 0 0 0 2px #191919;
    background-color: transparent;
    height: 48px;
}

.button3:hover{
    background-color: #000000;
}

.button4 {
    display: inline-block;
    outline: none;
    cursor: pointer;
    font-size: 14px;
    line-height: 0;
    border-radius: 500px;
    transition-property: background-color,border-color,color,box-shadow,filter;
    transition-duration: .3s;
    border: 1px solid transparent;
    min-width: 160px;
    white-space: normal;
    font-weight: 700;
    text-align: center;
    padding: 16px 14px 18px;
    color: #ffffff;
    box-shadow: inset 0 0 0 2px #191919;
    background-color: transparent;
    height: 48px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    
}

.button4:hover{
    background-color: #000000;
}

@keyframes glowing-button-85 {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 400% 0;
    }
    100% {
        background-position: 0 0;
    }
}

.button-85:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #222;
    left: 0;
    top: 0;
    border-radius: 10px;
}

iframe {
    width: 100%;
    height: 100%;
    border: 0px;
}

.logout {
    text-align: center;
}