body{
    font-family: "Javanese Text", sans-serif;
    color: rebeccapurple;
    background-color: white;
    overflow-x: hidden;
    background-image: url(mnt.jpg);
    background-repeat: repeat;
}
header{
    text-align: center;
    font-size: 25px;
    font-variant: small-caps;
    border: dotted 1px black;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0);
    background-size: contain; /*pilt mahub header sisse*/
}
header h1 {
    letter-spacing: 0.1cm;
}
nav{
    margin: 0 0 10% 0; /*top right bottom left*/
    background-color: rgba(255, 255, 255, 0);;
    line-height: 20px;
    display: flex;
    justify-content: center;
}
nav ul li{
    display: block;
    justify-content: center;
    float: left;
    padding: 0;
    width: 130px;
    background-color: rgba(255, 255, 255, 0.5);
    text-align: center;
    color: white;
    line-height: 50px;
    transition: all 0.5s ease;
    opacity: 1;
}
nav a{
    text-decoration: none;
    color: black;
}
nav ul li:hover{
    background-color: rgba(255, 255, 255, 1);
    text-align: center;
    color: #fff;
    opacity: 1;
}
nav ul li:hover .dropdown{
    opacity: 1;
    visibility: visible;
}
main section{
    margin: 20px;
    width: 30%;
    border: dotted 1px black;
    border-radius: 30px;
    padding: 2%; /* vahe tekstist ääriseni*/
    position: absolute;
    left: 600px;
}
.dropdown{
    display: block;
    position: absolute;
    opacity: 0;
    transition: all 0.3s ease;
    top: 100%;
    left: -20px;
}
footer{
    text-align: center;
}