<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&amp;display=swap');


body{    
    background-color: rgb(40, 40, 40);
}

.map{    
    height: 100%;
    place-items:  center;
    justify-content: center;
    align-items: center;
    text-align: center;
}

h2 {
  font-family: "Play", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;  
  color: #fff;
  text-align: center;
  text-shadow: 3px 3px 5px #4deeea;
}
p{
  font-family: "Play", sans-serif;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #fff;
  text-align: center;
}


.map img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 3px 3px 8px 4px #4deeea;
}

.bn30 {
  border: 5em;
  cursor: pointer;
  outline: none;
  font-size: 16px;
  -webkit-transform: translate(0);
  transform: translate(0);
  background-image: linear-gradient(45deg, #4568dc, #b06ab3);
  padding: 0.7em 2em;
  border-radius: 65px;
  box-shadow: 1px 1px 10px rgba(255, 255, 255, 0.438);
  -webkit-transition: box-shadow 0.25s;
  transition: box-shadow 0.25s;
  color: white;
}

.bn30 .text {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(45deg, #4568dc, #b06ab3);
}

.bn30:after {
  content: "";
  border-radius: 18px;
  position: absolute;
  margin: 4px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: #0e0e10;
}

.bn30:hover {
  background-image: linear-gradient(-45deg, #4568dc, #b06ab3);
  box-shadow: 0 12px 24px rgba(128, 128, 128, 0.1);
}

.bn30:hover .text {
  background-image: linear-gradient(-45deg, #4568dc, #b06ab3);
}
</pre></body></html>