html,body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

body{
    height: 100vh;
    background: #F4F5F6;
}

.container{
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container > h1 {
    text-transform: uppercase;
    color: rgba(0,0,0, .7);
    font-size: 30px;;
}

.logo-container {
    width: 250px;
} 

.logo-container img {
    width: 100%;
}

.info-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
}

.info-container a{
    color: rgb(20, 19, 19);
    text-decoration: none;
    font-size: 25px;
    font-weight: bold;
    padding: 10px 5px;
}