* {
  font-family: 'Comic Sans MS'
}

.main-header {
  color: aqua;
  font-size: 60px;
  text-shadow: #ff0080 4px 4px, #ff0080 5px 5px;
  text-decoration: inherit;
}

.animal-sanctuary {
  width: 30%;
  display: flex;
}

.animal-sanctuary img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: all 100ms;
}

.animal-sanctuary img:hover {
  border-style: inset;
  box-sizing: border-box;
  border-color:  aqua;
}

body {
  background: url("assets/clouds.png");
  background-repeat: repeat-x repeat-y;
}