@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
  margin: 0;
  background-color: #121212;
  color: white;
  font-family: 'Press Start 2P', cursive;
  height: 100vh;
  padding: 0;
}

::selection {
  background: #E55A00;
  color: white;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  gap: 150px;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  flex-wrap: nowrap;
}

.left, .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left {
  align-items: flex-start;
  text-align: left;
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  margin-top: -200px;
}

.right {
  align-items: flex-end;
}

.buttons-container {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: column;
}

.logo {
  max-width: 375px;
  width: 100%;
}

.ip-box, .dc-box {
  background: #1e1e1e;
  padding: 15px 25px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-bottom: 16px;
  width: fit-content;
}

.ip-box:hover, .dc-box:hover {
  background: #2c2c2c;
}

#copyPopup {
  display: none;
  color: #00ff88;
  margin-bottom: 10px;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
}

.discord-link img {
  width: 200px;
  transition: transform 0.3s ease;
}

.discord-link img:hover {
  transform: scale(1.1);
}

.websiteinfo p {
  font-family: 'Inter', sans-serif;
  color: #c7c7c7;
  margin: 0;
  padding-bottom: 5px;
  font-size: 18px;
  line-height: 28px;
}

h1 {
  margin-bottom: 20px;
}

@media (max-width: 800px) {

    .left {
        display: none !important;
      }

    .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        height: 100vh;
        padding: 20px;
      }

  .left, .right {
    align-items: center;
    text-align: center;
  }

  .center {
    position: static;
    transform: none;
    margin-top: 0;
    pointer-events: none;
  }

  .right {
    align-items: center;
  }

  .logo {
    max-width: 250px;
    width: 100%;
  }
  .buttons-container {
    flex-direction: column;
    align-items: center;
  }

  .discord-link img {
    width: 120px;
  }


}
