body {
  margin: 0;
  height: 100vh;
  background: #063A50;
  font-family: Arial, sans-serif;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Логотип в углу */
.header {
  position: fixed;
  top: 20px;
  left: 30px;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
  z-index: 10;
}

/* Компас, половина которого за экраном */
.compass {
  position: fixed;
  top: 50%;
  left: -150px; /* половина за экраном */
  width: 600px;
  height: 600px;
  transform-origin: 50% 50%;
  z-index: 1;
  opacity: 0.15; /* можно сделать полупрозрачным как фон */
}

/* Центр */
.center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.contacts {
  text-align: center;
}

.contacts h1 {
  margin: 0 0 20px;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 1px;
}

.contacts p {
  margin: 8px 0;
  font-size: 20px;
}
