@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    background-color: #080808;
    color: white;
    font-family: Inter;
}

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

p{
    margin-bottom: 80px;
    font-size: 18px;
}

ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
}

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%;
    margin-bottom: 10px;
    transition: .3s;
}
a:hover{
    background-color: white;
    color:#080808; 
}