* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

header {
    background-color: blue;
    color: white;
    font-size: 1rem;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

a {
    text-decoration: none;
    color: white;
}

/* Form */

form {
    padding-top: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

article.containerForm {
    padding-left: 10px;
}

input {
    padding: 0.6rem;
    border-radius: 7px;
    border-color: gray;
}

button {
    padding: 0.7rem;
    border-radius: 7px;
    border: none;
    color: white;
    background-color: blue;
    cursor: pointer;
}

/* Información */

div#viewInfo {
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h2 {
    font-size: 2rem;
}

article.containerInfo {
    padding-top: 1rem;
}

div#info {
    display: flex;
    flex-direction: column;
}

/* Mapa */
div.map {
    display: flex;
    height: 500px;
    width: 500px;
    border-radius: 7px;
}

.marker {
    background-image: url('../img/marker.png');
    background-size: cover;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
}

.mapboxgl-popup {
    max-width: 200px;
}

.mapboxgl-popup-content {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}