*{
  
}

html{
  margin: auto;
  padding: 10px;
}

body{
  font-family: monospace;
  text-align: center;
  justify-content: center;  
  vertical-align: middle;
  margin: auto;
  padding: 10px;
  background: lightyellow;
  color: green;
  
}

main{
  font-family: monospace;
  text-align: center;
  justify-content: center;  
  vertical-align: middle;
  margin: auto;
  background: lightyellow;
  color: green;
  margin-bottom: 10px;
}

.divider{
  height: 40px;
  background: orange;
}

img{
  height: 200px;
  transition: 0.5s;
}

img:hover{
  transition: 0.5s;
  transform: scale(1.8, 1.8);
  box-shadow: 1px 1px 6px white, -1px -1px 6px white, -1px 1px 6px white, 1px -1px 6px white;
  background-clip: content-box;
  padding: 0;
}

/* phone */
@media only screen and (max-width: 600px) {
 html{
  zoom: 70%;
 } 
}