:root {
  --acent-color: rgb(94, 147, 207);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  font-family: Tahoma;
}

.sea {
  /* background: lightblue url(/img/sea-tile.jpg) repeat; */
  background-color: #c8eff6;
  /* background: lightblue url(/img/ship-tile-sm.jpg) repeat; */
}

.scene {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: var(--acent-color);
  /* background-image: url(/img/land-tile.png); */
  background-image: url(/img/map-island.png);
  /* background-image: url(/img/map.jpg); */
  background-size: cover;
  transform-origin: center;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  transition: 1s;
  outline: var(--acent-color) solid 3px;
}

/* .scene::before {
  content: "";
  background-image: url(/img/frame-2.png);
  transform: translate(-33px, -33px);
  width: 1066px;
  height: 1066px;
  position: absolute;
} */
/* opacity: 0.7; */

.loader {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: azure;
  transition: 1s;
  opacity: 1;
}

.user-icon {
  position: absolute;
  width: 32px;
  height: 32px;
  /* transform: translate(-50%, -50%); */
  /* background-color: #eee; */
  background-color: transparent;
  cursor: pointer;
  border: 3px solid var(--acent-color);
  background-color: var(--acent-color);
  /* background-color: green; */
  /* border-radius: 50%; */
}
.user-icon img {
  transform: translate(-3px, -3px);
  border-radius: 50%;
  border: 5px solid var(--acent-color);
  background-color: var(--acent-color);
}

.user-icon .pirate-name {
  position: absolute;
  left: 32px;
  top: 76px;
  transform: translateX(-50%);
  text-align: center;
  padding: 3px;
  border: 1px solid var(--acent-color);
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: bold;
  color: #3c2424;
}

.c-tmp {
  position: absolute;
  transform: translate(-50%, -50%);
}

.no-mobile {
  display: none;
}

@media (max-width: 720px) {
  .no-mobile {
    position: absolute;
    height: 50%;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
    color: #eee;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 24px;
    text-align: center;
  }
}