* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    margin: 10px;
    background-color: rgb(88, 29, 29);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75vh;
    border: double 10px aliceblue;
    height: 980px;
}

ul {
    
    font-size: 40px;
    
}

li {
    padding: 15px;
    margin-top: 15px;
}

a {
    padding: 7px;
    color: beige;
    border: outset;
}

a:hover {
    color:  rgb(89, 17, 17);
    background-color: aliceblue;
    border-color: aliceblue;

}

