 * {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
 }

 h1 {
   font-size: 32pt;
   margin: 10pt;
   line-height: 48px;
 }
.links {
  font-weight: 600;
   text-decoration: none;
   color: white;
   transition: 0.3s;
   cursor: pointer;
}

.links:hover {
  color: #dfa62b;
  text-decoration: underline;
}

.list-links {
  font-weight: 600;
   text-decoration: none;
   color: #539e44;
   transition: 0.3s;
   cursor: pointer;
}

.list-links:hover {
  color: #dfa62b;
  text-decoration: underline;
}
 
 h3 {
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 0px;
}

#submit {
  background-color:#539e44;
  color: white;
  text-decoration: none;
  font-size: 16pt;
  border: none;
  transition: 0.3s;
  cursor: pointer;
  border-radius: 15px;
}

#submit:hover {
  background-color:#dfa62b ;
}

 header {
   text-align: center;
   margin: auto;
 }

 .mountain {
   margin: 50px 0 50px 0;
   height: 200px;
   background: url("mountain-vector.png");
   background-position: center;
   background-repeat: no-repeat;
   background-size: contain;
 }

.form {
  display: flex;
  flex-direction: column;
}
 #climbFinder {
   display: flex;
   flex-direction: column;
   align-items: center;
 }

 input {
   width: 200px;
   height: 50px;
   margin-bottom: 10px;
 }

 label {
  font-size: 16pt;
 }

 select {
  width: 200px;
  height: 50px;
  margin-bottom: 10px;
 }

 #js-error-message {
   text-align: center;
 }

 li {
   list-style: none;
 }

ul {
  padding-left: 0px;
  text-align: left;
  padding-top: 10px;
  padding-left: 50px;
}

.result-card {
  margin: auto;
  margin-bottom: 20px;
  height: 200px;
  width: 80%;
  border: 1px solid rgb(54, 54, 54);
  box-shadow: 0px 2px 10px #dfdede;
  border-radius: 25px;
}

#map {
  margin: auto;
  height: 400px;
  width: 100%;
}

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

.hidden {
    display: none;
}

footer {
  text-align: center;
  background-color: #59595e;
  padding-top: 10px;
  height: 10%;
  font-size: 16pt;
  color: white;
}

@media all and (min-width: 1000px) {
  h1 {
    padding-bottom: 20px;
  }
  #climbFinder {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: auto;
    margin-bottom: 10px;
    width: 80%;
  }

  .form {
    margin-bottom: 5px;
    margin-right: 10px;
  }

  input#submit {
    align-self: center;
    margin-top: 25px;
  }

  .result-card {
    margin: auto;
    margin-bottom: 20px;
    height: 200px;
    width: 50%;
    border: 1px solid rgb(54, 54, 54);
    box-shadow: 0px 2px 10px #dfdede;
    border-radius: 25px;
  }

  ul {
    padding-top: 20px;
    padding-left: 100px;
  }
}