/*komentoor*/
@media screen and (max-width:800px) {
    body {
        text-align: center;
        background-color: green;
    }
}
@media screen and (max-width:500px) {
    body {
        text-align: center;
        background-color: blue;
    }
}
header{
    color: darkorange;
    background-color: whitesmoke;
    width: 30%;
}
header h1{
    font-family: "Agency FB";
    font-size: xxx-large;
    letter-spacing: 0.1cm;
    border-bottom: solid 1pt darkorange; /*dotted, dashed, double*/
}
li {
    float: left;
}

li a{
    display: block;
    color:darkorange;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
    padding: 10px 20px;
    border-right: solid 1px darkgrey;
    font-variant: small-caps;

}
ul{
    list-style-type: none;
    margin: 20px; /*väline vähe elementist*/
    padding: 0; /*elemendi sisu ümber ruum*/
    overflow: hidden;
    background-color: whitesmoke;
    width: 30%;
}
li a:hover{
    background-color: coral;
    color: whitesmoke;
    text-decoration: underline whitesmoke;
}
/*pöördume ul nimega nimekiri*/
.nimekiri{
    list-style-type: circle;
    margin: 0; /*väline vähe elementist*/
    padding: 20px; /*elemendi sisu ümber ruum*/
    background-color: whitesmoke;
    color: darkorange;
    font-variant: small-caps;
}
img#ala{
    width: 30%;
}
img#ala2{
    width: 30%;
    border: dotted 2pt darkorange;
}
img#ala3{
    width: 40%;
    border: double darkorange;
    border-radius: 60px;
}

