body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#BG , #BGVideo{
    width: 102%;
    height: 101vh;
    position: fixed;
    left: -1%;
    top: -1vh;
    filter: blur(4px);
}
#main{
    width: 100vw;
    height: calc(100vh - 300px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    z-index: 2;
}
#main h1{
    color: white;
    font-family: 'MainFontIt';
    font-size: 2.5vw;
    margin: 0;
    z-index: 2;
}
#data{
    width: 100%;
    margin-top: 10px;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 1fr;
    padding-bottom: 10px;
    z-index: 2;
}
#sideLocation{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.gmap_canvas{
    overflow: auto;
    width: 80%;
    height: 300px;
    border-radius: 20px;
}
#gmap_canvas{
    width: 100%;
    height: 100%;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
}
.gmap_canvas a{
    display: none;
}
#sideData{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: flex-start;
    padding-left: 20px;
}
#sideData img{
    width: 2.5vw;
    height: auto;
}
#sideData p{
    width: 98%;
    padding-left: 10px;
    text-align: left;
    color: white;
    font-size: 1.5vw;
    font-family: 'MainFontIt';
}
#sideData p a{
    text-decoration: none;
    color: white;
    font-size: 1.5vw;
    font-family: 'MainFontIt';
}
#side p a:hover{
    text-decoration: underline;
}
@media (max-width : 1000px){
    #main{
        height: auto;
    }
    #data{
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }
    #sideData p{
        font-size: 2.5vw;
    }
    #sideData p a{
        font-size: 2.5vw;
    }
    #main h1{
        font-size: 4vw;
    }
}
