* {
  padding: 0;
  margin: 0;
  font-family: helvetica;
}

body {
  background-color: rgb(0, 0, 0);
  color: white;
}

.box {
  background: grey;
  width: 50vw;
  padding: 30px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 20px;
}
.commis {
  color: black;
  font-weight: 800;
  font-size: 20px;
}

.box2 h1 {
  font-size: 60px;
  color: #ffffff;
}
.box2 h2 {
  display: none;
}

.box2 input {
  width: 40vw;
  height: 8vh;
  font-size: 30px;
  padding: 5px 15px;
}

.box2 button {
  width: 12vw;
  font-size: 20px;
  height: 8vh;
  font-weight: 800;
  background-color: rgb(46, 46, 46);
  color: aliceblue;
  border-style: none;
  border-radius: 5px;
  cursor: pointer;
}

.addon {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}

.addon .link {
  width: 40vw;
  overflow-x: auto;
  text-wrap: nowrap;
}

.addon .copybtn {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 252, 252);
  transition: background-color 0.2s ease;
}

.box2 img {
  width: 300px;
}

.sidebar-message {
  position: fixed;
  bottom: 20px;
  right: -300px; /* Hidden by default */
  width: 250px;
  background-color: rgb(3, 112, 22);
  color: white;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease; /* Smooth slide-in effect */
  z-index: 1000;
}

.sideshow {
  right: 20px;
}

@media only screen and (max-width: 600px) {
  .box {
    margin-top: 10px;
    width: 80vw;
    padding: 30px;
  }

  .box2 h1 {
    font-size: 35px;
    color: #ffffff;
  }

  .box2 img {
    width: 200px;
  }

  .box input {
    width: 82vw;
    height: 6vh;
    font-size: 21px;
  }
  
  .addon .link {
    text-align: center;
    width: 86vw;

}

  .box2 button {
    width: 37vw;
    font-size: 17px;
  }
}
