/* Font */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500&display=swap');

/* Loader */
@keyframes rotation {
    0% {
        transform: rotate(0deg); }
    100% {
        transform: rotate(360deg); } }

#loader-wrapper {
    background-color: #FFFFFF;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    text-align: center;
}

.loader {
    width: 40px;
    height: 40px;
    border: 5px solid #000000;
    border-bottom-color: transparent;
    border-radius: 50%;
    margin-top:calc(50vh - 20px);
    display: inline-block;
    box-sizing: border-box;
    -webkit-animation: rotation 1s linear infinite;
    animation: rotation 1s linear infinite;
}

/* Main Site */

body{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("img/bg.jpg");
    height: 100vh;
    text-align: center;
    width: 100vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-family: "Barlow Condensed", sans-serif;
    overflow: hidden;
}

.container{
    min-height: 75vh;
    min-width: 75vw;
    max-height: max-content;
    max-width: max-content;
    background-color: rgba(255, 255, 255, 0.1);
    display: grid;
    place-items: center;
}

input{
    width: 70vw;
    height: 55px;
    margin: 1rem;
    display: block;
    text-align: center;
    background-color: transparent;
    border: 3px solid white;
    color: #ffffff;
    font-family: "Barlow Condensed", sans-serif;
}

button{
    width: 96px;
    height: 48px;
    background-color: transparent;
    border: 3px solid white;
    color: #ffffff;
    font-family: "Barlow Condensed", sans-serif;
    margin: 1rem;
}

input:hover{
    background-color: rgba(0, 0, 0, 0.5);
    transition: 0.5s;
}

button:hover{
    transform:scale(1.1);
    background-color: rgba(0, 0, 0, 0.5);
    transition: 0.5s;
}

label{
    font-size: 32px;
}

img{
    position: absolute;
    top: 20vh;
}

a{
    position: fixed;
    display: block;
    bottom: 20vh;
    color: #ffffff;
}

a:visited {
    color: #ffffff;
}

a:hover {
    color: #d3d3d3;
}

a:active {
    color: #ffffff;
}