
body {
  margin: 0;
  background-color: white;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.mockup {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.background {
  width: 100%;
  height: 100vh;
  object-fit: contain;       
  object-position: top;      
  background-color: white;   
  display: block;
}

.logo {
  position: absolute;
  top: 10%;                
  left: 50%;
  transform: translateX(-50%);
  width: 5%;
  height: auto;
  animation: draw 3s ease forwards;
}


@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}


#weather-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 60px 80px; 
  justify-items: center;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 100px auto;
  background-color: white;
}

.weatherEntry {
  text-align: center;
}

.atmosLogo {
  width: 120px;
  height: auto;
  transition: opacity 0.6s ease;
}

.label {
  font-size: 9px;
  color: #333;
  margin-top: 15px;
}



.caption {
  max-width: 700px;
  margin: 60px auto 120px auto;
  text-align: center;
  color: #333;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
}

.caption p {
  margin-bottom: 16px;
}

.caption ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-style: italic;
  font-size: 13px;
  opacity: 0.7;
}

.caption li {
  margin-bottom: 4px;
}




.mobile-mockup {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: white;
}

.mobile-mockup img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  border: none;
  box-shadow: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
}




