*{
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
body{
  background-color: rgb(51,51,51);
}
.container{
  width: 100%;
  height: 100vh;
  background: url('../images/construction.jpg') ;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.5;
  position: relative;
}
.content{
  position: absolute;
  width: 30%;
  height: 30%;
  left: 15%;
  top: 30%;
  text-align: center;
  padding: 2rem;
  border-radius: 50%;
  transition: 1s;
  
}
.content:hover{
  transform: translateY(-10px);
}
img{
  border-radius: 35px;
  margin-top: 30px;
}
@media  screen and (max-width:500px) {
  img{
    width: 100px;

  }
  .content{
    top: 35%;
    left: 0px;
    text-align: center;
    padding: 0.5rem;
  }
  h1{
    font-size: 1.5rem;
  }
  h3{
    font-size: 1rem;
    text-align: center;
  }
}