body {
  display: flex;
  justify-content: center;
  font-family: 'Press Start 2P', cursive;
  align-items: center;
  height: 100vh; 
  margin: 0;
  background-color: black; 
}

#homepage-image {
  max-width: 100%;
  height: auto;
  position: relative;
}
#mobile-block {
  display: none;
  width: 100%;
  height: auto;
}
@media (max-width: 900px) {
  #homepage-image {
    display: none;
  }

  map, area {
    display: none;
    pointer-events: none;
  }

  #mobile-block {
    display: block;
  }
}
.back-link {
    position: fixed;
    top: 60px;
    left: 1px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    text-decoration: none; 
    border-radius: 5px;
    color: #f5f5f5;
    z-index: 10000; 
    transition: color 0.3s;
}

.back-link:hover {
    color: #ff4081;
    background-color: rgba(0, 0, 0, 0.9);
}