*{
    padding: 0;
    margin: 0;
    /*max-height: 100vh;*/
    font-family: Arial, Helvetica, sans-serif, Courier, monospace;
}
/* Hide scrollbar  */

::-webkit-scrollbar {
    display: none;
}
.loadingBox{
    background-color: #000000;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: hidden;
    position: relative;
    z-index: 100;
    position: fixed;
}
.loadingBox .logo{
    height: 100vh;
    width: 125px;
    max-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    align-self: center;
}
.loadingBox .logo #loaderImg{
    width: 125px;
    height: auto;
}
body, html{
    overflow: hidden;
}
body{
    position: relative;
    background-color: #ffffff;
    height: 100vh;
    /*padding: 150px;*/
    display: flex;
    align-content: center;
    justify-content: center;
    justify-items: center;
    align-items: center;
    overflow: hidden;
}
/* Here is the main section withc contain the video background */
.Main {
    position: relative;
    width: 95%;
    height: 95vh;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    justify-items: center;
    text-align: center;
    overflow: hidden;
    border-radius: 25px;/*
    background-color: rgba(0, 0, 0, 0.1);*/
}

#logoImg{
    position: absolute;
    width: 125px;
    left: 5%;
    top: 5%;
}
.Main video {
    background-position: center;
    object-position: center;
}
.Main video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}
 h1 {
    font-size: 10vh;
    text-transform: uppercase;
    width: 16ch;
}
h3 {
    font-size: 4vh;
    width: fit-content;
    margin:0 auto;
}
 p {
    position: fixed;
    bottom: 4%; 
}
 .container {
    align-self: center;
    justify-self: center;
}
.btn{
    all: unset;
    background-color: #ffffff;
    padding: 10px;
    margin: 20px;
    border-radius: 10px;
    cursor: pointer !important;
    mix-blend-mode: difference;   
    transition: 0.4s;
    font-size: 16px; 
    text-transform: uppercase;
    font-weight: bolder;
    filter: blur(1px); 
}
.btn:hover{
    padding: 12px 15px;
    font-size: 18px; 
    filter: blur(0px);
    border: 3px solid #0095f8;
}
img, p, h1, h3{
    text-transform: uppercase;
    color: #ffffff;
    filter: blur(0px);
    mix-blend-mode: difference;    
}
@media screen and (max-width: 768px) {
    .btn:hover{
        padding: 10px;
        font-size: 16px; 
    }
    .btn{
        filter: blur(0px); 
    }
    h1 {
        font-size: 10vw;
    }
    h3 {
        font-size: 4vw;
    }
    p{
        font-size: 2vw;
    }
 

}
@media screen and (max-width: 425px) {
    .btn:hover{
        padding: 10px;
        font-size: 16px; 
    }
    .btn{
        filter: blur(0px); 
    }
    h1 {
        font-size: 11vw;
    }
    h3 {
        font-size: 5vw;
    }
    p{
        font-size: 2vw;
    }
    img{
        width: 30vw;
    }

}
