@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;1,300&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

body {
  width: 100%;
  height: 100vh;
  margin: 80px 0;
  background-image: linear-gradient(145deg,
      #051937,
      #004d7a,
      #008793,
      #00bf72,
      #a8eb12);
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#parent {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

#btn1 {
  background-color: #051937;
  color: white;
  font-weight: 600;
  letter-spacing: 1.5px;
}

#btn2 {
  background-color: #004d7a;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1.5px;
}

#btn3 {
  background-color: #008793;
  color: white;
  font-weight: 600;
  letter-spacing: 1.5px;
}

#btn4 {
  background-color: #00bf72;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1.5px;
}

#btn5 {
  background-color: #a8eb12;
  color: white;
  font-weight: 600;
  letter-spacing: 1.5px;
}

#btn1,
#btn2,
#btn3,
#btn4,
#btn5 {
  padding: 10px;
  width: 110px;
  border-radius: 5px;
  border: none;
  font-size: 12px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

h2 {
  margin-top: 25px;
  font-size: 15px;
  color: white;
  font-weight: 600;
  letter-spacing: 1.5px;
  display: flex;
  justify-content: center;
}

#copyCode {
  margin-top: 25px;
  color: white;
  font-size: 15px;
  font-weight: 300;
  height: 250px;
  padding: 10px;
  width: 250px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 2px solid white;
  cursor: pointer;
}

.copyMain {
  display: flex;
  justify-content: center;
  align-items: center;
}



@media screen and (max-width: 576px) {

  body {
    margin: 0;
    height: 100vh;
  }

}