*{
    box-sizing: border-box;
}
body{
    background-color: antiquewhite;
}
.container{
    max-width: 960px;
    -outline: 2px dotted red;
    margin: 0 auto;
}
.vertikalni_izbornik{
    margin: 0;
    padding: 0;
    list-style: none;
}
ul li a{
    background-color: orange;
    text-decoration: none;
    width: 100px;
    height: 40px;
    display: block;
    text-align: center;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
}
ul li a:hover{
    background-color: rgb(146, 230, 255);
    text-decoration: underline;
}
h1{
    color: orange;
}