*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.box{
  width:300px;
  background-color: white;
  flex-direction: column;
  padding: 20px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px, rgb(51, 51, 51) 0px 0px 0px 3px;
}

.box input {
  display: none;
}
.box label{
  background-color: black;
  font-family: sans-serif;
  width: 100%;
  display: block;
  text-align: center;
  padding: 10px 20px;
  color: white;
  border-radius: 10px;
  font-size: 14px;
}
.box-img{
  width: 100%;
  height: 200px;
  margin-bottom: 10px;
  object-fit: cover;
  border-radius: 10px;
  /* display: none; */
}

.social {
  position: absolute;
  right: 50px;
  top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.telegram {
  padding: 10px 25px ;
  background-color: #219dd9;
  color: white;
  font-family: sans-serif;
  text-transform: capitalize;
}
.youtube {
  padding: 10px 25px ;
  background-color: #f61c0d;
  color: white;
  font-family: sans-serif;
  text-transform: capitalize;
}

@media(max-width:768px){
  .social{
    right: 20px;
    top: 50px;
  }
}