header{
    display: flex;
}
body{
    font-size: 3vh;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}
.logo{
    width: 40vh;
}
.content{
    display: flex;
    text-align: center;
    justify-content: center;
}
.comunicate{
    height: auto;
    width: 50vh;
    color: black;
    margin-top: 10vh;
    padding: 2vh;
    border: 2px solid rgb(32, 32, 32);
    border-radius: 3px;
    box-shadow: 1vh 1vh gainsboro;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}
.login-item{
    height: 3vh;
    width: 80%;
    flex: auto;
    margin-bottom: 3vh;
}
@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: white;
    }
    .logo,.comunicate{
        filter: invert(100%) contrast(85%);
    }
}