img {
    border-radius: 100px;
    height: 25rem;
}

.button-2 {
    background-color: rgb(255, 255, 255);
    color: #bc3c33;
    border: #bc3c33;
    cursor: pointer;
    border-radius: 8px;
    width: 100px;
    height: 45px;
    transition: 0.3s;
    padding: 0px;
    margin-right: 20px;
}

.button-2:hover {
    color: #ffffff;
    background-color: #BC3C33;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    transform: translateY(-2px);
}

.button-2:active {
    box-shadow: none;
    transform: translateY(0);
}

body {
    font-family: Arial, Helvetica, sans-serif;
    height: 50%;
    background-color: rgb(248,248,248);
}
  
h1 {
    font-family: 'Pacifico', cursive;
    font-size: 44px;
    color:#BC3C33;
}
  
h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #bc3c33;
    padding-left: 2rem;
    padding-top: 4rem;
}
  
h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #bc3c33;
    text-align: center;
}
  
p {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #bc3c33;
    padding-left: 2rem;
}

li {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #bc3c33;
    padding-left: 15px;
}

#map {
    flex-grow: 1;
    height: 100vh;
    width: calc(100vw - 400px);
    margin-left: 400px;
}

.viewer {
    width: calc(100vw - 450px);
    height: 65vh;
    overflow: hidden;
  }

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 300px;
    background-color: rgba(248, 248, 248, 0.7);
    padding: 50px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow-y: auto;
  }

img {
    max-width: 100%;
    height: auto;
    display: block;
  }