@font-face {
    font-family: 'Apple Chancery';
    font-style: normal;
    src: local('Apple Chancery'), url('/font/Apple%20Chancery.woff') format('woff');
}
@font-face {
    font-family: 'Legendaria2';
    font-style: normal;
    src: url('/font/Legendaria_Swash_2.otf');
}
@keyframes colorCycle {
  0% { color: red; }
  25% { color: orange; }
  50% { color: goldenrod; }
  75% { color: crimson; }
  100% { color: maroon; }
}
h1 {
  font-family: Apple Chancery;
  border-style: ridge;
  border-color: #ff0000;
  border-width: 7px;
  border-radius: 40px;
}
h2 {
  font-family: Apple Chancery, cursive;
}
body {
  background-image: url("/img/81vYmZMz6CL._UF894,1000_QL80_.jpg");
  background-attachment: fixed;
  color: white;
  margin: 15px;
  text-align: justify;
}
p {
  font-family: Garamond;
  font-size: 22px;
}
.legendaria {
   font-family: 'Legendaria2';
   font-size: 30px;
}
a:link {
  color: #FF0000; /* light red */
}
a:hover {
  animation: colorCycle 2s infinite; /* Cycle colors on hover */
}
a:visited {
  color: #8E1600; /* deep red */
}
.content-box {
  border: 10px;
  padding: 5px;
  border-radius: 25px;
  background-color: #000000;
}

.navbar {
  overflow: hidden;
  background-color: #858380;
  font-size: 20px;
  border: 2px;
  border-color: #858380;
  border-radius: 15px;
}

.navbar a {
  float: left;
  font-size: 18px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 20px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: red;
  transition: opacity 0.5s ease-in-out;
}

.dropdown-content {
  display: none;
  opacity: 1;
  position: absolute;
  background-color: #858380;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.7);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}
