* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  font-family: 'Rubik', sans-serif;
}

body{
  width: 100vw;
  height: 100vh;
}

.wrapper{
  width: 100%;
  height: 100%;
  position: relative;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.body-background{
  background-image: url(./images/pattern-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 40%;
}

.pos-rel{
  position: relative;
}

.size-fill{
  width: 100%;
  height: 100%;
}

header h1{
  color: white;
}

/*Input*/
.input-container{
  width: 95%;
  height: 40px;
  max-width: 500px;
  justify-content: space-between;
  display: flex;
  flex-direction: row;
  top: 5%;
}

.input-container input{
  height: 100%;
  flex-grow: 8;
  border: none;
  border-radius: 10px 0 0 10px;
  font-size: 15px;
  padding-left: 10px;
}

.input-container button{
  height: 100%;
  flex-grow: 1;
  border: none;
  border-radius: 0 10px 10px 0;
  background-color: hsl(0, 0%, 17%);
}

.input-container button:hover{
  cursor: pointer;
  background-color:hsl(0, 0%, 59%);
}

/*Info*/
.info-container{
  width: 95%;
  max-width: 1000px;
  background-color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: auto;
  min-height: 150px;
  top: 10%;
  border: none;
  border-radius: 15px;
  z-index: 1000;
}

.info-container div{
  width: 25%;
  height: 50%;
  border-right: 1px hsl(0, 0%, 17%) solid;
  padding: 0 20px 0 20px;
}

.info-container div:last-of-type{
  border: none;
}

.info-container div h3 {
  font-weight: 700;
  color: hsl(0, 0%, 59%);
  font-size: 15px;
}

.info-container div p{
  font-weight: 500;
  font-size: 20px;
  margin-top: 10px;
}

/*map*/
.map-container{
  width: 100%;
  height: 60%;
  position: absolute;
  bottom: 0;
}

form{
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 768px){
  .info-container{
    flex-direction: column;
  }

  .info-container div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 70px;
    border-right: none;
  }
  
  .info-container div h3 {
    font-size: 150%;
  }
  
  .info-container div p{
    font-size: 130%;
  }
}