#map, #resetButton, #submitButton {
    filter: blur(4px);
}

#map {
    padding: 0;
    margin: 0;
    height: 100%;
    width: 60vw;
    position: fixed;
    top: 0;
    right: 0;
}

.info {
    padding: 6px 8px;
    font: 14px 'Roboto', sans-serif;
    background: white;
    box-shadow: 0 11px 15px -7px rgb(0 0 0 / 20%), 0 24px 38px 3px rgb(0 0 0 / 14%), 0 9px 46px 8px rgb(0 0 0 / 12%);
    border-radius: 5px;
}

.info h2 {
    margin: 0 0 5px;
    color: #292626;
}

.info h3{
    font: 16px 'Noto Serif Khitan Small Script', sans-serif;
    margin: 0;
}

#resetButton {
    position: fixed;
    font: 12px 'Roboto', sans-serif;
    top: 135px;
    right: 10px;
    padding: 6px 8px;
    background: white;
    box-shadow: 0 11px 15px -7px rgb(0 0 0 / 20%), 0 24px 38px 3px rgb(0 0 0 / 14%), 0 9px 46px 8px rgb(0 0 0 / 12%);
    border-radius: 5px; 
}

#submitButton {
    position: fixed;
    bottom: 2%; 
    right: 25%;
    outline: none;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    border-radius: 500px;
    transition-property: background-color,transform;
    transition-duration: .3s;
    border: 1px solid transparent;
    letter-spacing: 2px;
    min-width: 160px;
    text-transform: uppercase;
    white-space: normal;
    font-weight: 700;
    text-align: center;
    padding: 17px 48px;
    color: #fff;
    background-color: rgb(224, 99, 99);
    height: 48px;
    outline-style: solid;
}

#submitButton:hover{
    transform: scale(1.2);
    background-color: #852123;
    transition-duration: 0.3s;
}
#submitButton:not(:hover){
    transform: scale(1);
    background-color: rgb(224, 99, 99);
    transition-duration: 0.3s;
}
