*{
  font-family: "Arial";
}
#current-page{
 background-color: rgb(223, 0, 93);
 color: white;
 padding: 5px 10px; 
 border-radius: 5px;
 border:solid 2px white;
}
.cursive{
  font-family: "Quintessential", serif;
  font-weight: 400;
  font-style: normal;
}
header{
  width: 100%;
  top:0;
  left: 0;
}
header nav{
  background: rgb(223, 0, 93);
  width: auto;
  height: auto;
}
header nav ul{
  margin: 0;
  display: flex;
  justify-content: center;
}
header nav ul li{
  list-style-type: none;
  padding: 20px 30px;
  display: flex;
  align-items: center;
}
header nav ul li a {
  padding: 5px 10px;
  font-size: 1.4em;
  border:1px solid white;
  text-decoration-line:none;
  border-radius: 5px;
  color: white;
  background-color: rgb(179, 4, 77);
}
nav{
  border-radius: 10px;
}
footer{
  margin-top: 20px;
  width: 100%;
  left:0;
}
footer nav{
  padding: 15px 0 5px 0;
  background-color: rgb(139, 14, 66);
}
footer nav ul{
  display: flex;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
footer nav ul li a{
  margin: 0 20px;
  color: rgb(241, 99, 142);
}
footer nav p{
  text-align: center;
  color: rgb(207, 207, 207);
}
@media screen and (Max-width: 500px){
  header nav{
    font-size: 0.45em;
  }
  footer{
    font-size: 0.55em;
  }
  footer p{
    font-size:1em
  }
  header nav ul li{
    padding: 20px 0;
  }
  header nav ul li a{
    padding: 5px;
  }
  header ul{
    padding: 0;
    justify-content: space-between;
  }
  
}