/* list-reset */
ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
/* oblikovanje linkova */
a {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    display: block;
}
a:hover {
    background-color: #555;
    color: white;
}
/* horizontalni izbornik */
.horizontalni ul {
    display: flex;
    background-color: #333;
    flex-direction: row;
    justify-content: center;
}
/* vertikalni izbornik */
.vertikalni ul {
    display: flex;
    background-color: #333;
    flex-direction: column;
}
.horizontalni-div {
    background-color: lightslategrey;
    height: 560px;
    width: 800px;
    text-align: center;
}
.vertikalni-div {
    background-color: lightslategrey;
    height: 860px;
    width: 800px;
    text-align: center;
}
.vertikalni-div:hover {
    height: 930px;
    width: 850px;
}
.horizontalni-div:hover {
    height: 650px;
    width: 850px;
}
.izbornik {
    font-size: 50px;
}
.izbornik:hover {
    font-size: 65px;
}
body {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    background-color: lightblue;
}
/* responzivnost za mobitel */
@media (max-width: 768px){
    .horizontalni ul {
        flex-direction: column;
    }
}