*{
    box-sizing: border-box;
} 

body {
    font-family: 'Museo 500';
    background-color: #110E0E;
    border: 4px solid #AA9157;
    min-height: 100vh;
    font-weight: 500;
    color: #AA9157;
    font-size: 16px;
    padding: 0;
    margin: 0;
}

.langing-view{
  justify-content: space-between;
  flex-direction: column;
  display: inline-flex;
  align-items: start;
  min-height: calc(100vh - 8px);
  padding: 6.6%;
  gap: 30px;
}

.content{
  gap: 48px;
  display: flex;
  align-items: start;
  flex-direction: column;
}

.content h2{
  margin: 0;
}

.social{
  gap: 24px;
  display: flex;
  align-items: start;
  flex-direction: column;
}

.social a{
  gap: 24px;
  display: flex;
  font-size: 16px;
  color: #AA9157;
  font-weight: 500;
  align-items: center;
  text-decoration: none;
  font-family: 'Museo 500';
}

.logo img, .logo-text img{
  max-width: 100%;
}

.landing-coins{
  position: fixed;
  height: 72.6%;
  margin: auto;
  width: 40.7%;
  z-index: 1;
  bottom: 0;
  right: 6%;
  top: 0;
}

.landing-coins div{
  width: 18.9%;
  height: 16.3%;
  cursor: pointer;
  position: absolute;
  transition: all .6s ease-in-out;
}

.landing-coins div img{
  width: 100%;
}

@keyframes coin {
  0% {
    transform: scale(1) rotateY(0deg);
  }
  50% {
    transform: scale(1.15) rotateY(180deg);
  }
  100% {
    transform: scale(1) rotateY(360deg);
  }
}

.landing-coins div:hover img{
  animation: coin 0.6s ease-in-out forwards;
}

.icon-1{
  top: 0;
  right: 0;
}

.icon-2{
  top: 10%;
  right: 50%;
}

.icon-3{
  top: 38%;
  left: 0;
}

.icon-4{
  bottom: 10%;
  right: 50%;
}

.icon-5{
  bottom: 0;
  right: 0;
}

.icon-6{
  top: 38%;
  right: 20%;
}

@media screen and (max-width: 767px) {
  .langing-view{
    width: 100%;
  }

  .logo, .logo-text{
    width: 100%;
    text-align: center;
  }

  .logo-text{
    margin-bottom: auto;
  }

  .landing-coins{
    top: auto;
    width: 40%;
    bottom: 20%;
    height: 40%;
    right: 10px;
    max-height: 420px;
  }

  .landing-coins div{
    width: 28%;
    height: 20%;
  }
}