body{
    font-family: 'Lato', sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    margin: 0;
}

a{
    color: white;
}

.main{
    background-image: url(imgs/backgound.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.topbar{
    background-color: rgb(146, 6, 4);
    width: 600px;
    border-radius: 6px 6px 0px 0px;
}

.app{
    background-color: rgb(35, 36, 35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 600px;
    height: 600px;
    text-align: center;
    border-radius: 0px 0px 6px 6px;
}
.whole{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60%;
    margin: 2% 0;
}

.text{
    margin-bottom: 1%;
}

.text, .fields{
    width: 100%;
    display: flex;
    justify-content: space-around;
}

input{
    border: 0px;
    width: 20%;
    height: 25px;
    color: white;
    background-color: rgb(54, 54, 54);
}

.button{
    background-color: rgb(54, 54, 54);
    font-size: 20px;
    cursor: pointer;
    color: white;
    font-family: 'Lato', sans-serif;
    border: 0px;
    height: 4vh;
    width: 6vw;
    text-align: center;
}
.button:hover{
    background-color: rgb(43, 43, 43);
}

.footer{
    width: 100%;
    background-color: rgb(35, 36, 35);
    position: fixed;
    bottom: 0;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}