#main{
    height: 780px;
    width: 100%;
    background-color: #E6E6E6;
}

#leftbar{
    width: 600px;
    height: 780px;
    background-color: #ffffff;
}

#dotcontainer{
    display: flex;
    width: 500px;
    justify-content: space-evenly;
    margin: 0 auto;
    padding: 30px 0;
}

.obj_dot{
    width: 40px;
    height: 40px;
    background-color: #cccccc00;
    border-radius: 50%;
    border: 3px solid #016E95;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    cursor: pointer;
}

.obj_dot_absolute{
    width: 20px;
    height: 20px;
    background-color: #cccccc00;
    border-radius: 50%;
    border: 3px solid #016E95;
    position: absolute;
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 1);
    cursor: pointer;
}

.activeDot{
    background-color: #016E95;
}

#obj_img{
    width: 540px;
    height: 300px;
    border-radius: 20px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    margin: 0 30px;
    object-fit: contain;
}

#leftbar h1{
    font-size: 40px;
    text-align: center;
    color: #016E95;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

#leftbar p{
    font-size: 20px;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    padding: 0 30px;
    height: 240px;
    overflow-y: scroll;
}

#mapcontainer{
    position: absolute;
    top: 150px;
    left: 600px;
}

#map {
    width: 100%;
    height: 100%;
}

#play_pause {
    background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
    position: absolute;
    margin: 0;
    font-size: 30px;
    right: 30px;
    bottom: 180px;
    color: white;
    background-color: #016E95;
    padding: 15px 25px;
    border-radius: 30px;
    cursor: pointer;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

@media only screen and (max-width: 900px)
{
    #main{
        height: max-content;
        width: 100%;
        background-color: #ffffff;
    }
    
    #leftbar{
        width: 100%;
        height: max-content;
        background-color: #ffffff;
    }
    
    #dotcontainer{
        display: flex;
        width: 80%;
        justify-content: space-evenly;
        margin: 0 auto;
        padding: 30px 0;
    }
    
    .obj_dot{
        width: 20px;
        height: 20px;
        background-color: #cccccc00;
        border-radius: 50%;
        border: 3px solid #016E95;
        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
        cursor: pointer;
    }
    
    .obj_dot_absolute{
        width: 20px;
        height: 20px;
        background-color: #cccccc00;
        border-radius: 50%;
        border: 3px solid #016E95;
        position: absolute;
        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
        cursor: pointer;
    }
    
    .activeDot{
        background-color: #016E95;
    }
    
    #obj_img{
        width: 80vw;
        height: 50vw;
        border-radius: 20px;
        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
        margin: 0 10vw;
        object-fit: contain;
    }
    
    #leftbar h1{
        font-size: 40px;
        text-align: center;
        color: #016E95;
        text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    }
    
    #leftbar p{
        font-size: 20px;
        text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
        padding: 0 30px;
        height: 240px;
        overflow-y: scroll;
    }
    
    #mapcontainer{
        display: none;
    }
    
    #map {
        width: 100%;
        height: 100%;
    }
    
    #play_pause {
        position: relative;
        margin: auto;
        font-size: 10vw;
        right: initial;
        bottom: initial;
        color: white;
        background-color: #016E95;
        padding: 3vw 0vw;
        width: 80vw;
        text-align: center;
        border-radius: 30px;
        cursor: pointer;
        text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    }
    
}