body{
    overflow: hidden;
    background-color: rgb(29, 29, 72);
}

section.login{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100vh;
}

video.videobackground,
video.videologinGranted{
    position: absolute;
    padding: 0;
    width: 100%;
    z-index: 1;
}

div.LoginTitle{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 20vh;
    width: 70vw;
    margin-top: 10vh;
    z-index: 10;
    cursor: pointer;
}
.flexrow{
    display: flex;
    flex-direction: row;
    align-items: center;
}

img.LoginTitle{
    height: 20vh;
    width: 10vw;
    scale: 0.5;
    filter: brightness(100);
}
h1.LoginTitle{
    font-size: 5vw;
    color: white;
}

div.Loginbody{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

input.nameInput,
button.loginhacker{
    margin-top: 3vh;
    height: 7vh;
    width: 20vw;
    padding-left: 2vw;
    padding-right: 1vw;
    outline: none;
    border-radius: 1vh;
    background-color: rgb(250, 250, 250, 0.5);
    box-shadow: 0px 0px 1px 1px rgb(44, 44, 44);
    border: none;
    color: white;
    font-size: 1.5vw;
    transition: 300ms;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input::placeholder {
    color: white;
  }
input:focus {
    outline: none;
}

button.loginhacker:hover{
    cursor: pointer;
    background-color: rgb(255, 255, 255, 0.8);
}

video.videologinGranted{
    display: none;
    z-index: 100;
}
#warnText{
    margin-top: 5vh;
    color: white;
    transition: 500ms;
    animation-name: popup;
    animation-duration: 1s;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
    transform: scale(0);
}
@keyframes popup {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

.directhref{
    position: relative;
    color: white;
    top: 2vh;
    right: 2vw;
    font-size: 2vw;
    z-index: 999999;
    cursor: pointer;
}
.directhref:hover{
    text-decoration: underline;
}
.blackscreen{
    opacity: 0;
}
form.gelijkspelen{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    bottom: 25%;
    z-index: 10000;
}
.gelijkspelen_btn{
    background: none;
    font-size: 1.5vw;
    color: white;
    transition: 300ms;
    border: none;
    cursor: pointer;
}
.gelijkspelen_btn:hover{
    text-decoration: underline;
}