body{
  background-color:black;
  text-align:center;
  display:flex;
  flex-direction: column;
  justify-content:center;
  align-items:center;
  height:100vh;
  margin:0;
  color:white;
  font-family:georgia;
}
.door{
  width:100px;
  transition: transform 0.3s ease;
  }
p{
 text-align:center;
}
.door:hover{
   transform: scale(1.05);
}