

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    background-color: #232323;
    color: white;
    font-family: Staatliches;
    width: 100%;
    box-sizing: border-box;
}

h1{
    margin-bottom: 100px;
    font-size: 120px;
    text-transform: uppercase;
    text-align: center;
}

ul{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
li{
    box-sizing: border-box;
    margin: 10px;
}

a{
    font-size: 30px;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    text-align: center;
    display: block;
    border: 2px solid white;
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
    transition: .3s;
}
a:hover{
    background-color: white;
    color:#080808; 
}