@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

body {
  background: #0B0C11;
  font-family: 'Space Grotesk', sans-serif;
  margin: 0;
  padding: 0
}

.background,body {
  height: 100vh;
  overflow: hidden
}

.background {
  left: 0;
  top: 0;
  width: 100vw;
  z-index: 1
}

.background,.background__img {
  position: absolute
}

.background__img--logo {
  left: 20%;
  rotate: -0.5deg;
  top: 40%; 
  -webkit-transform: translate(-25%,-35%);
  transform: translate(-25%,-35%);
  width: 70vh;
  z-index: 2;
}

.background__img--bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url('../images/Grid.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.main {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 4vh;
  height: 100vh;
  justify-content: right;
  margin-left: 30%;
  margin-top: 15%;
  position: relative;
  z-index: 2
}

@media (max-width: 1015px) {
  .main {
      align-items:center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      margin-right: 30%
  }
}

.main__img {
  margin-left: 10%;
  position: relative;
  width: 50vh
}

.main__text {
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 5.5vh;
  margin-left: 10%;
  text-align: center
}

.main__text--wrap {
  word-wrap: break-word;
  width: 60vh
}

@media screen and (max-width: 1565px) {
  .background__img--logo {
    display: none;
  }
}

@media screen and (max-width: 525px) {
  .main__img {
    scale: 0.8;
  }
}

@media screen and (max-width: 430px) {
  .main__text--wrap {
      word-wrap:break-word;
      width: 220%;
  }
}

.main-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5vh;       /* odstęp między przyciskami */
  margin-left: 10%;
}

.main-button--property {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;     /* odstęp między ikoną a tekstem */
  padding: 1em 2em;
  border: none;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  height: auto;   /* wysokość dopasowana do zawartości */
}

.main-button--property img {
  height: 1.5em;  /* ikona skalowana do tekstu */
  width: auto;    /* zachowanie proporcji */
  object-fit: contain;
}


.main-button--twitter {
  background: linear-gradient(90deg,#171515,#000);
}

.main-button--discord {
  background: linear-gradient(90deg,#282B30,#1E2124);
}

.main-button--novastars {
  background: linear-gradient(90deg,#061944,#03052B);
}