
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  height: 100%;
  background-image: linear-gradient(90deg,rgb(73, 33, 79) 0%, rgb(99, 139, 145) 50%, rgb(42, 53, 45) 100%);
}
.container{
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
  height: 100vh;
    font-family: "Varela Round", sans-serif;
}
button{
  height: 35px;
  width: 100px;
  padding: 5px;
  margin: 5px;
  border-radius: 8px;
}
h2{
  font-size: 20px;
}
.copycode{
  /* height: 80px; */
  width: 300px;
  font-size: 14px;
  padding: 7px;
  border-radius: 10px;
  border: 1px solid black;
  border-left: 3px solid black;
  opacity: 0.7;
  background-color: white;
}