/* HTML */
html {
    scroll-behavior: smooth;
    height: 100%;
}

body{
    position: absolute;
    margin: 0px;
    top: 0px !important;
    width: 100%;
    height: 100%;
    background-color: black;
    font-family: Candara !important;
    font-size: 100%;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
}

@media only screen and (max-width: 65rem){
    html, body{
        overflow-x: hidden;
    }
}

p,h1,h2,h3{
    margin: 0;
}

ul{
    position: absolute;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

::placeholder {
    color: rgb(160, 160, 160);
}
/* * * * * */



/* VIDEO */
video{
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/* * * * * * * * */



/* LOGO */
.logo{
    position: absolute;
    height: 20rem;
    top: 50%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
/* * * * * */