/* Estilos para pantallas pequeñas */
@media only screen and (max-width: 600px) {}

/* Estilos para pantallas medianas */
@media only screen and (min-width: 601px) and (max-width: 1024px) {}

/* Estilos para pantallas grandes */
@media only screen and (min-width: 1025px) {}

#map {
    height: 95%;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

input[type=text] {
    background-color: #fff;
    border: 0;
    border-radius: 2px;
    box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
    margin: 10px;
    padding: 0 0.5em;
    font: 400 18px Roboto, Arial, sans-serif;
    overflow: hidden;
    line-height: 40px;
    margin-right: 0;
    min-width: 25%;
}

input[type=button] {
    background-color: #fff;
    border: 0;
    border-radius: 2px;
    box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
    margin: 10px;
    padding: 0 0.5em;
    font: 400 18px Roboto, Arial, sans-serif;
    overflow: hidden;
    height: 40px;
    cursor: pointer;
    margin-left: 5px;
}

input[type=button]:hover {
    background: rgb(235, 235, 235);
}

input[type=button].button-primary {
    background-color: #1a73e8;
    color: white;
}

input[type=button].button-primary:hover {
    background-color: #1765cc;
}

input[type=button].button-secondary {
    background-color: white;
    color: #1a73e8;
}

input[type=button].button-secondary:hover {
    background-color: #d2e3fc;
}

input[type=button].button-tertiary {
    background-color: rgb(29, 127, 6);
    color: #ffffff;
}

input[type=button].button-tertiary:hover {
    background-color: #d2e3fc;
}

#response-container {
    background-color: #fff;
    border: 0;
    border-radius: 2px;
    box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
    margin: 10px;
    padding: 0 0.5em;
    font: 400 18px Roboto, Arial, sans-serif;
    overflow: hidden;
    overflow: auto;
    max-height: 50%;
    max-width: 90%;
    background-color: rgba(255, 255, 255, 0.95);
    font-size: small;
}

#instructions {
    background-color: #fff;
    border: 0;
    border-radius: 2px;
    box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
    margin: 10px;
    padding: 0 0.5em;
    font: 400 18px Roboto, Arial, sans-serif;
    overflow: hidden;
    padding: 1rem;
    font-size: medium;
}

footer {
    height: 5%;
    background-color: #191919;
    background-image: -moz-linear-gradient(top, #191919, #000000);
    background-image: -o-linear-gradient(top, #191919, #000000);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #191919), color-stop(1, #000000));
    background-image: -webkit-linear-gradient(#191919, #000000);
    background-image: linear-gradient(top, #191919, #000000);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#191919', endColorStr='#000000');
    border-top: 1px solid rgba(50, 50, 50, 0.3);
    width: 100%;
    position: fixed;
    bottom: 0;
    color: white;
    text-align: center;
}

h1 {
    color: rgb(0, 0, 0);
    text-align: center;
    font: 90px Impact, sans-serif;
  }

  h2{
    color: rgb(0, 0, 0);
    font: 40px Impact, sans-serif;
    text-align: center;
  }
  
  h3 {
    color: rgb(0, 0, 0);
    font: 20px Impact, sans-serif;
    text-align: center;
  }

  .imagen-container {
    text-align: center;
  }
  
  .imagen {
    margin: auto;
    display: block;
    height: 250px;
    width: 250px;
  }

  .container {
    background-color: #d2e3fc;
  }

  .textoGuardar {
    background-color: #2eae33;
    border: 0;
    border-radius: 10px;
    font: Cambria;
    padding: 0.5rem;
    font-size: x-large;
    text-align: center;
    color: #fff;
    height: 130px;
    width: 800px;
    display: block;
    margin: 0 auto;
  }

  .containerCorrecto {
    background-color: #bbffbd;
  }
