@import url("https://fonts.googleapis.com/css?family=Outfit");
body {
  background-color: lightseagreen;
  font-family: "Outfit"; 
  color: ivory
  }


h1 {
    font-size: 48px;
    color:darkslategrey;
    }
h2 {
  font-size: 32px;
  color:darkslategrey;
  }
h3 {
  font-size: 28px;
  color:darkslategrey;

  }
h4 {
  font-size: 26px;
  color:darkslategrey;

  }
h5 {
  font-size: 24px;
  color:darkslategrey;

  }
h6 {
  font-size: 20px;
  color:darkslategrey;

  }
p {
  font-size: 18px;
  color:ivory
  }
button {
  border: 3px hidden teal;
  color: ivory;
  padding: 12px 24px;
  text-align: center;
  font-size: 16px;
  margin: 4px 6px;
  cursor: pointer;
  background-color: mediumaquamarine;
  font-family:Outfit;
  border-radius:5px;
  transition-duration: 0.5s;
  }
button:hover{
  background-color: teal;
  transform: scalex(0.9) scaley(0.85) rotate(5deg);
  box-shadow: 0px 0px 20px ivory;
  }