.fadeAnimation{
    animation-name:fadeExample;
    animation-duration:2s;
    animation-delay:1s;
    animation-direction:alternate;
    animation-iteration-count:infinite;
}


@keyframes fadeExample{
    from{opacity:100%;}
    to{opacity:0%;}
}

 .pinkbold{
            color:#F380E7;
            font-weight:bolder;
        }
            body{
    text-indent: 20px;
     font-family: Arial, sans-serif;
     
      font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            transition: margin-left 0.5s; 
        }

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color:pink;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color:hotpink;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
  
  .fade-in {
    animation: fadeIn 4s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

a:hover {
  background-color: grey;
  font-size: 18px;
}
p::first-line {
  color: #272624;
  font-variant: small-caps;
}