*, body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    font-family: Inter;
}
.container{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.text{
    font-size: 24px;
}
.logo > *{
    display: block;
    max-width: 50%;
    justify-self: center;
}
.links{
    margin-top: 2%;
}
.links > *{
    padding: 15px;
    color: #000;
}
.links > *:hover{
    outline: 1px solid black;
}