@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #360369;
  font-family: "Montserrat", sans-serif;

  font-weight: 600;
  color: white;
  overflow: hidden;
}

#fetchButton {
  border: none;
  padding: 0.6rem 4rem;
  border-radius: 3px;
  font-size: 1.1rem;
}

#hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height:100vh;
}

#heading-weather-api{
    font-size: 6rem;
    color: white;
}

#location-head{
    display: none;
}

.main-section{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

#weather{
    background-color: aliceblue;
    color: #360369;
    padding-top: 1rem;
    padding-left: 3rem;
    height: 50vh;
}


.weather-item{
    padding: 0.5rem;
    background-color: #360369;
    color: white;
    border-radius: 5px;
}

.weather-class{
    display: flex;
    gap: 1rem;
}

#location, #map{
    padding-left: 3rem;
    padding-right: 3rem;
}

 .location-p{
    font-size: 14px;
    font-weight: 200
}

.location-lati{
    background-color: #270846;
    display: inline-block;
    font-size: 14px;
    padding: 0.5rem;
    border-radius: 5px;
}

button{
    transition: transform 0.3s ease 0s;
}
button:hover{
    cursor: pointer;
    transform: translateY(-5px);
    box-shadow: 0px 0px 10px rgba(84, 84, 84, 0.5);
  }