* {
    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;
}

/* Zonas por defecto */

.defaultZones {
    padding: 5rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

/* Seleccionar zona */

.selectZone {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.selectZone article#select input {
    padding: 0.5rem 1rem;
    border-radius: 7px;
    border-color: rgba(0, 0, 0, 0.2);
}

.selectZone article#select button {
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 7px;
    cursor: pointer;
    background-color: blue;
    color: white;
}

.selectZone article#zone {
    padding-top: 2rem;
}