@font-face {
  font-family: sans;
  src: url(assets/IBMPlexMono-SemiBold.ttf);
}
  body {
color: rgb(107, 107, 107);
text-transform: uppercase;   
font-family: "sans";
    display: flex;
 font-weight: 600;
    justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100%;
  background: #fafafa; /* Fallback background */
  font-feature-settings: 'ss04' on, 'ss02' on;
  font-size: 12px;
  transition: background 1s ease;
  overflow: hidden;
}

@media (max-width: 770px) {
  body {
    font-size: 12px;
  }
}

#gradient {
  position: absolute; /* Positioned absolutely to not interfere with other content */
  top: 50%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Offset to ensure perfect centering */
  width: 350px; /* Size of the circle */
  height: 350px; /* Size of the circle */
  border-radius: 50%; /* Makes it a circle */

  background: radial-gradient(circle, #FFD194, #70E1F5); /* Default gradient */
  transition: background 1s ease; /* Smooth transition for gradient change */
  z-index: -1; /* Makes sure the gradient stays in the background */
}

.weather {
 mix-blend-mode: exclusion;
  position: center;

  margin: 0; /* Remove any default margin */
  padding: 0; /* Optional: remove padding */
  @media (max-width: 770px) {
 
}
}

.weather .grid-container {

  display: grid;
  grid-template-columns: auto auto;
  gap: 0px; /* Add small spacing between grid items */
  margin: 0; /* Remove default margin */
  padding: 0; /* Remove default padding */

}


.weather .label {
  text-align: left;
}

.weather .value {
  text-align: left;
  padding-left: 40px;
}

a:link {
  color: rgb(0, 0, 0);
  text-decoration: none;

}

a:visited {
  color: rgb(83, 83, 83);
  text-decoration: none;
}

a:hover {
  color: rgb(139, 139, 139);
}

#contact-container {
margin-top: 3px;
  text-align: start;
  grid-column: span 1;
}

#contact-button {
  display: inline-block;
  color: #000000;
  background-color: transparent;
  border: 1.5px solid #000000;
  border-radius: 25px;
  padding: 8px 15px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  margin-left: 0; /* Center the button horizontally */
}