h1 {
   text-align:center;
   color:DarkRed;
   padding-top:90px;
   font-family:Times New Roman;
   font-size: 45px;
   background-color:Navy;
   margin:0px;
   animation:fadein;
   animation-duration:4s;
   animation-iteration-count:1;
   text-shadow:2px 2px 3px white;
   border-bottom:10px solid #dbebf5;
}
h2 {
   color:#10375c;
   font-size:38px;
   text-align:center;
   font-family:Middlesex;
   padding:56 px;
     text-shadow:2px 2px 3px #afbbf8;
   animation:appear;
   animation-duration:4s;
   animation-iteration-count:1;
   }
h3 {
   color:navy;
   font-size:33px;
   text-align:left;
   font-family:sans-serif;
   text-shadow:2px 2px 3px white;
   animation:fade;
   animation-duration:4s;
   animation-iteration-count:1;
}
b {
   font-family:Times New Roman;
   font-size:50px;
   text-shadow:2px 2px 3px white;
}
h4{
   text-align:right;
}
.navbar ul{
   list-style:none;
   background-color:#f3f0b4;
   padding:0px;
   margin:0px;
   overflow:hidden;
   animation:glow;
   animation-duration:3s;
   animation-iteration-count:1;
   font-size:16px;
}
.navbar a{
   color:navy;
   text-align:center;
   text-decoration:none;
   padding:15px;
   display:block;
   animation:shine;
   animation-duration:3s;
   animation-iteration-count:1;
   text-shadow:2px 2px 3px orange;
}
.navbar a:hover{
   background-color:#4259C3;
   transition:750ms;
}
.navbar li{
   float:left;
}
@keyframes glow{
   0%{background-color:#f0bd33;}
   50%{background-color:#f5dfa8;}
   100%{background-color:#f3f0b4;}
   
}
@keyframes shine{
   0%{color:navy;}
   50%{color:black;}
   100%{color:navy;}
}
@keyframes fadein{
0%{opacity:0;}
100%{opacity:1;}
}
body{
   background-color:#BCD2E8;
}
img{
   border:10px solid #000000;
   animation:clean;
   animation-duration:3s;
   animation-iteration-count:1;
}
@keyframes clean{
   0%{border:10px solid #BCD2E8;}
   100%{border:10px solid black;}
}
.img_deg{
   float:right;
}
pos_cen{
   position;absolute;
   width:70%;
}
@keyframes appear{
   0%{opacity:0%}
   100%{opacity:100%}
}
@keyframes fade{
   0%{opacity:0%;}
   100%{opacity:100%}
}
ul{
   font-size:36px;
   list-style:none;
   padding:0px;
   font-family:sans-serif;
   color:navy;
   animation:fade;
   animation-duration:4s;
   animation-iteration-count:1;
}