#content{
    position: absolute;
    margin: 20px;
    padding: 10px;
    border-radius: 12px;
    background-color: #f0f0f0f0;
    top: 0;
    right: 0;
    height: calc(100% - 60px);
    width: calc(100% - 850px);
    transition: box-shadow 0.3s ease;
    border: 2px solid #ddd;
    min-width: 400px;
    overflow-y: scroll;
}
#content:hover{
    box-shadow: 0 0 5px 5px #ddd;
    border: none;
    margin: 22px;
}
body{
    font-family: Arial, Helvetica, sans-serif;
}
h1{
    margin: 10px 0;
}
hr{
    border: 1px dashed #000;
}
a{
    color: #000;
}
a:hover{
    color: #00f;
}
#map{
    height: 300px;
}