body{
    font-size: clamp(16px, 1.5vw, 20px);
}

#map {
    display: none;
    width: 90vw;
    height: 35vw;
    max-height: 600px;
}

.changebtn{
    width: 45%;
    height: 5vw;
    border-radius: 5px;
    cursor: pointer;
    background-color: #fdfdfd;
}

.changebtn.active {
    background-color: #3498db;
    color: white;
}

.header{
    border: 2px solid rgb(0, 0, 0);
    margin-left: 3px;
    top: 10vw;
    width: 100%;
    height: 35vw;
    overflow-y: scroll;
    overflow-x: hidden;
    border-radius: 8px;
    background-color: #e0ebf0;
    box-sizing: border-box;
    max-height: 400px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header a{
    text-align: left;
}

.header.hidden {
    display: none;
}

.line{
    border: 2px solid black;
    border-radius: 30px;
    margin-left: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
}

.map{
    width: 40vw;
    height: 200px;
}

.images{
    width: 45vw;
    height: 27vw;
    object-fit: cover;
}


.maparea{
    display: flex;
}

.YTvideo iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
}