body{
    background-color: rgb(146, 205, 202);
    background-image: url(../flora.jpg);
    background-size: 200px;
    background-repeat: repeat;
}
#glavni{
    background-color: lightpink;
    width: 600px;
    height: 600px;
    margin: auto;
    margin-top: 100px;
}
h1{
    font-style: italic;
    text-align: center;
    color: darkgoldenrod;
    font-size: 40px;
}
a{
    text-decoration: none;
    color: blueviolet;
    font-size: 20px;
}
a:hover{
    background-color: palevioletred;
}
p{
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
}
p:nth-child(odd){
    color: blueviolet;
}
body.drugi{
    background-image: url(../list.jpg);
    background-size: 2000px;
    background-repeat: no-repeat;
}