body {
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
}

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

h1 {
    padding: 0 20px;
    text-align: center;
}

.modal {
    overflow: hidden;
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-info {
    display: block;
}

.modal .modal-content {
    overflow: hidden;
    background-color: white;
    margin: 10% auto;
    padding: 10px 50px 30px 50px;
    width: 80%;
    border-radius: 30px;
}

.modal .modal-content .close {
    cursor: pointer;
    border: none;
    background-color: white;
    color: #1c84ce;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: relative;
    top: -60px;
    right: -10px;
    font-size: 2.5rem;
    transition: 0.3s;
}


@media only screen and (max-width: 600px) {
    .modal .modal-content {
        padding: 10px 20px 30px 20px;
    }
    .modal .modal-content .close {
        right: 0px;
    }
}

.button {
    background-color: #1c84ce;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5rem;
    padding: 1rem 1.5rem;
    margin: 1rem;
    transition: 0.3s;
    cursor: pointer;
    z-index: 3;
}

.send {
    background-color: #1c84ce;
    color: white;
    font-size: 2rem;
    border: none;
    border-radius: 30px;
    margin: 16px;
    transition: 0.3s;
    cursor: pointer;
    position: absolute;
    bottom: 30px;
    padding: 18px 20.5px 14px 20.5px;
    right: 10px;
}

.info {
    background-color: #1c84ce;
    color: white;
    font-size: 2rem;
    border: none;
    border-radius: 30px;
    margin: 1rem;
    width: 69px;
    transition: 0.3s;
    cursor: pointer;
    position: absolute;
    bottom: 30px;
    left: 10px;
}

.input {
    background-color: rgb(243, 243, 243);
    color: #1c84ce;
    font-size: 20px;
    border: none;
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
    width: 90%;
    transition: all 0.1s;
}

.input:focus {
    outline: solid 4px #1c84ce;
}


.like {
    background-color: #1c84ce;
    border-radius: 5rem 0 0 5rem;
    padding: 0.5rem 1rem;
    margin: 1rem 0 1rem 1rem;
}
.dislike {
    background-color: #ff0000;
    border-radius: 0 5rem 5rem 0;
    padding: 0.5rem 1rem;
    margin: 1rem 1rem 1rem 0;
}

.like, .dislike {
    color: white;
    font-size: 1rem;
    border: none;
    transition: 0.3s;
    cursor: pointer;
    opacity: 0.6;
    font-weight: bold;
}

.like:hover, .dislike:hover {
    opacity: 0.8;
}

.like.active, .dislike.active {
    opacity: 1;
}

.like:focus, .dislike:focus {
    outline: none;
}