h1 {
  margin: 0 auto;
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  text-align: center;
}

body {
  min-height: 100svh;
  margin: 0;
  padding: 0 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  background-image: url('https://images.unsplash.com/photo-1606327054536-e37e655d4f4a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
  background-repeat: no-repeat;
  background-size: cover;
}

p {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}

a {
  color: rgb(219, 65, 65);
}

.header {
  text-align: center;
  max-width: 800px;
}

.logo {
  width: 150px;
  height: auto;
}

#environments {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

#environments .card h2 {
  margin: 0 auto;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  text-align: center;
  color: black;
}

#environments .card svg {
  height: 80px;
  width: 80px;
}

#environments .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 20px;
  height: 250px;
  width: 250px;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin: 0 auto;
  text-decoration: none;
}

#environments .card.testing:hover {
  background: rgba(55, 142, 255, 0.5);
  border: 1px solid rgba(55, 142, 255, 0.25);
}

#environments .card.staging:hover {
  background: rgba(255, 255, 0, 0.5);
  border: 1px solid rgba(255, 255, 0, 0.25);
}

#environments .card.production:hover {
  background: rgba(0, 255, 0, 0.5);
  border: 1px solid rgba(0, 255, 0, 0.25);
}
