@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@import url(loader.css);
@import url(progress-bar.css);
@import url(background.css);

body, html{
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

*{
    box-sizing: border-box;
    color: white;
    user-select: none;
}

html, body {
    height: 100%;
    background-color: #121212;
}
  
#fullscreendiv {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#fullscreendiv *{
    z-index: 2;
}
.content{
    width: 100%;
    height: 40%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: column;
}
h1{
    letter-spacing: 15px;
}
h3{
    width: 45%;
    font-weight: 300;
    font-size: 1.2rem;
}
p{
    color: #707070;
    margin: 2px;
}
.w50line{
    width: 50px;
    height: 2px;
    background-color: #bebebe;
    position: relative;
    margin: 25px;
}
a{
    margin: 15px;
    font-size: 1.5rem;
    color: rgb(211, 211, 211);
    font-weight: 800;
    text-decoration: none;

}