* {
  margin: 0px;
  padding: 0px;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}

#wrapper {
  width: 100%;
  margin: auto;
}

.clearfix::after {
  clear: both;
  display: block;
  content: "";
}

#Background {
  min-height: 100vh;
  width: 100%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 120px;
  flex-direction: column;
}


#Menu img {
  width: 50px;
}

#Menu {
  position: absolute;
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  min-height: 80px;

  display: flex;
  align-items: center;

  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 0 32px;
  gap: 20px;
}


#logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 22px;
}

#Menu a {
  text-decoration: none;
  color: gray;
  margin-left: 10px;
  font-size: 18px;
}


#Menu a:hover {
  color: white;
  font-size: 19px;
}

#logo,
.item,
.nav-right {
  flex: 1;
  display: flex;
  align-items: center;
}

#logo {
  gap: 12px;
  color: white;
  font-size: 22px;
}


.item {
  justify-content: center;
  gap: 28px;
}


.nav-right {
  justify-content: flex-end;
}

.container {
  width: 70%;
  margin: 10px auto;
  padding: 40px;
  border-radius: 24px;
  background: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
  color: white;
}

.container h2 {
  font-size: 22px;
  margin-bottom: 30px;
  opacity: 0.85;
}


.container-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}


.container-tile {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 30px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform .3s, box-shadow .3s;
  text-align: center;
}

.container-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.container-tile .icon {
  font-size: 32px;
  opacity: .8;
}

.container-tile h3 {
  font-size: 48px;
  margin: 15px 0 8px;
  font-weight: 600;
}

.container-tile h3 span {
  font-size: 20px;
  opacity: .6;
}

.container-tile p {
  letter-spacing: .1em;
  font-size: 12px;
  text-transform: uppercase;
  opacity: .6;
}

.heartrate {
  box-shadow: inset 0 0 40px rgba(255, 80, 80, .08);
}

.blood {
  box-shadow: inset 0 0 40px rgba(80, 160, 255, .08);
}

.alcohol {
  box-shadow: inset 0 0 40px rgba(255, 200, 80, .08);
}

@media (max-width: 900px) {
  #Menu {
    width: 95%;
    padding: 12px 16px;
    gap: 10px;
    flex-wrap: wrap;
    min-height: auto;
  }

  #logo {
    font-size: 18px;
  }

  #Menu img {
    width: 36px;
  }

  .item a {
    font-size: 14px;
  }

  .item {
    justify-content: center;
  }

  .container,
  #container,
  #Address {
    width: 95%;
    padding: 20px;
  }

  #map {
    height: 300px;
  }

  .container-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

}