
body {
  background-color: #aa7b6f;
  background-size: cover;
  align-items: center;
  text-align: center;
  font-family: "Emilys Candy";
  padding-top: 80px;
  padding-bottom: 80px;
}
.one-btn {
  background-color: #ee7ea0;
  color: #FFD7D6;
  font-size: 16px;
  cursor: pointer;
  font-family: "Schoolbell";
}
.one-btn:hover {
  background-color: #EA7D70;
  color: white;
  animation: shake 0.4s;
}
.two-btn {
  background-color: #CFA195;
  color: black;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: none;
  background-image: url(https://i.pinimg.com/736x/f8/67/ca/f867ca835fa82dc6a82c4031ea5b5c4e.jpg);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  font-size: 18px;
}
.two-btn:hover {
  background-color:#87564B;
  color: white;
  opacity: 0.8;
}
h1 {
  color: black;
  margin: 10px;
  font-family: "Henny Penny";
  animation: wave 6s infinite;
}
p {
  font-size: 1.2em;
  margin: 10px;
}
details {
  font-size: 18px;
}
@keyframes fade {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}
.wave span {
  display: inline-block;
  font-size: 50px;
  animation: wave 2s infinite;
}
@keyframes wave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
.page-border {
  border: .5px solid black;
  padding: 20px;
  margin: 20px;
  min-height: 90vh;
  font-size: 15px;
  background-color: #e3e3e3;
}
.fontdiner-swanky-regular {
  font-family: "Fontdiner Swanky", serif;
  font-weight: 400;
  font-style: normal;
}
.schoolbell-regular {
  font-family: "Schoolbell", cursive;
  font-weight: 400;
  font-style: normal;
}
.emilys-candy-regular {
  font-family: "Emilys Candy", serif;
  font-weight: 400;
  font-style: normal;
}
.henny-penny-regular {
  font-family: "Henny Penny", system-ui;
  font-weight: 400;
  font-style: normal;
}
nav {
  background: #aa7b6f;
  padding: 10px;
}
nav a {
  color: white;
  margin: 0 15px;
  font-size: 18px;
}