body{
    background-image:url(../img/gis.jpg);
    background-size: cover;
}
#header{
    height: 70px;
    text-align: center;
}
#p2{
    margin-top: 18px;
    text-align: center;
    font-size: large;
}
#sidebar{
    background-color: blueviolet;
    height: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 0;
    border: 2px solid black;
    border-radius: 10px;
}
#img{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    object-fit: cover;
}
#ul{
    list-style: none;
    margin: 50px auto;
    padding-left: 40px;
    width: 100%;
}
.col-md-3 ul li{
    text-align: center;
    border-bottom: 1px solid #616161;
    border-top: 1px solid #616161;
}
.col-md-3 ul li:hover{
    background: #3b21ac;
    border-radius: 10px;
    transition:1s ease-in-out;
    -webkit-transition:0.3 ease-in-out;
    -moz-transition: 0.3 ease-in-out;
    -ms-transition: 0.3 ease-in-out;
    -o-transition: 0.3 ease-in-out;
}
.col-md-3 ul li a{
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
    display: block;
}

#content{
    height: 800px;
}
#footer{
    height: 10px;
}
#map{
    border: 3px solid burlywood;
    border-radius: 10px;
}
