@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: blue;
    font-family: 'VT323', Arial, Helvetica, sans-serif;
    color: white;
    font-family: 'VT323', Arial, Helvetica, sans-serif;
    text-decoration: none;
}

section{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.leftside{
    width: 50%;
    margin-left: 3vw;
}

h1{
    font-size: 3vw;
    margin-bottom: 20px;
}

li{
    font-size: 1.8vw;
    line-height: 2.5vw;
    list-style-type: none;
}

.rightside{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.rightside h1{
    font-size: 6vw;
}

.links{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-right: 2vw;
    margin-top: 5vh;
}

.links a{
    font-size: 3vw;
}

.links a:hover{
    color: rgb(185, 181, 181);
}

