*{
    box-sizing: border-box;
}
body{
    background-color: antiquewhite;
}
.container{
    max-width: 960px;
    -outline: 2px dotted red;
    margin: 0 auto;
}
.reset{
    margin: 0;
    padding: 0;
    list-style-type: none;
}
ul li a{
    background-color: tomato;
    text-decoration: none;
    width: 100px;
    height: 30px;
    display: block;
    text-align: center;
    padding: 10px;
    margin: 5px;
    border-radius: 10px;
    color: steelblue;
}
ul li a:hover{
    background-color: steelblue;
    color: tomato;
}
h1{
    color: tomato;
}