#map {
        height: 400px;
        width: 100%;
       }

header {
        color: maroon;
        font-size: 50px;
        background-color: goldenrod;
        border-style: solid;
        border-width: 0px;
}

div.stanga {
        background-color: white;
        color: green;
        margin: 15px;
        padding: 15px;
        border-style:double;
        border-color: green;
        border-width: 10px;
        border-radius: 10px;
        text-align: left;
        height: 1700px;
        width: 25%;
        float: left;
}

div.dreapta {
        background-color: white;
        color: green;
        margin: 15px;
        padding: 15px;
        border-style:double;
        border-color: green;
        border-width: 10px;
        border-radius: 10px;
        text-align: left;
        height: 1700px;
        width: 55%;
        float: left;
}

div.mijloc {
        background-color: white;
        color: green;
        margin: 15px;
        padding: 15px;
        border-style:double;
        border-color: green;
        border-width: 10px;
        border-radius: 10px;
        text-align: left;
        height: 750px;
        width: 25%;
        float:left;
}

div.mijloc h1 {
        font-size: 25px;
}

div.mijloc img{
        border-radius:10px;
}

ul.topnav {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: maroon;
}

ul.topnav li {float: left;}

ul.topnav li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

ul.topnav li a:hover {background-color: blue;}

ul.topnav li.right {float: right;}

@media screen and (max-width: 600px){
    ul.topnav li.right, 
    ul.topnav li {float: none;}
}