@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f0f1f3;
}

.content {
  padding: 12px;
}

.content p {
  padding: 0 2px;
}

.title-page {
  font-weight: bold; 
  margin: 16px 0;
  padding: 0;
  color: #00b0b9;
}

.content input{
  min-height: 40px;
  width: 300px;
  margin: 4px 2px;
  border-radius: 4px;
  border: none;
  font-size: 15px;
}

.content button {
  width: 130px;
  margin: 4px 2px;
  color:azure;
}

.content button:hover {
  color: rgb(250, 230, 230);
  transition: all 0.3s ease-in;
}

.icons-list {
  display: flex;
  flex-direction: row;
  justify-content: left;
  padding: 0;
}

.icons-list li{
  height: 35px;
  width: 50px;
  padding: 0 2px;
  list-style-type: none;
}

.icons-list li img {
  height: 100%;
  cursor: pointer;
  margin: 8px 0;
}

.map {
  height: 60vh;
}

@media (max-width: 600px) {
  .content p, .content input, .content button{
    font-size: 14px;
  }
}
