.background{
position: fixed;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
z-index: -1;
}

.header{
width: 100%;
padding: 2px;
text-align: center;
position: absolute;
top: 10%;
left: 0%;
}

.header h1{
font-size: 74px;

font-weight: bold;
color: white;
text-shadow: 1px -3px 0 #FF8585, 2px 3px 0 #09376F, -3px 3px 0 #0F2949;
}

.header h2{
color: white;
}

.back{
background: url("54.gif") no-repeat center;
background-size: cover;
height: 360px;
position: relative;
}

ul.link{
list-style-type: none;
margin: 0;
padding: 0;
width: 25%;
background-color: #00030F;
overflow: auto;
z-index: 4;
}

ul.link li a{
display: block;
color: white;
text-align: center;
padding: 25px 25px;
text-decoration: none;
font-size: 23px;

}

ul.link li a:hover{
color: black;
transition: .2s ease;
background-color: white;
}

ul.link li a.links{
background-color: #251F32;
border-radius: 10px;
color: white;
}

@media screen and (min-width: 1100px){
ul.link{
width: 100%;
height: auto;
position: relative;
}

ul.link li a{
float: left;
}

}

@media screen and (max-width: 1100px){
ul.link li a{
display: none;
}

}

.dropbtn{
background-color: #00030F;
color: white;
padding: 16px;
font-size: 22px;
cursor: pointer;
width: 100%;
border: none;
transition: .2s ease;
}

.dropbtn:hover{
background-color: white;
color: black;
}

.dropdown{
position: relative;
display: inline-block;
}

.dropdown-content{
text-align: center;
display: none;
position: absolute;
background-color: white;
width: 100%;
overflow: auto;
z-index: 3;
}

.dropdown-content a{
color: black;
text-decoration: none;
display: block;
padding: 10px;
transition: .2s ease;
}

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

.show{
display: block;
}

@media screen and (max-width: 1100px){
.dropdown{
display: block;
}
}

@media screen and (min-width: 1100px){
.dropdown{
display: none;
}
}

.cat2{
position: absolute;
animation-name: catanime2;
animation-duration: 0.8s;
animation-iteration-count: infinite;
}

@keyframes catanime2 {
0% { right: 13%; top: 55%;}
45% { right: 12.5%; top: 55%;}
70% { right: 12.5%; top: 55%;}
100% { right: 13%; top: 55%;}
}

@media screen and (max-width: 900px){
.cat2{
display: none;
}
}

.cat1{
position: absolute;
animation-name: catanime1;
animation-duration: 1.5s;
animation-iteration-count: infinite;
opacity: 0.1;
}

@keyframes catanime1 {
0% { right: 19%; top: -5%;}
50% { right: 18%; top: -5%;}
100% { right: 19%; top: -5%;}
}

.cat1:hover{
opacity: 1;
transition: .2s ease;
}

.image{
width: 100%;
margin-top: 35px;
}

.image img{
border: 2px solid #7800B0;
border-radius: 15px;
padding: 6px;
box-shadow: 0 0 2px 2px #7800B0;
}

.image img:hover{
border: 4px solid white;
border-radius: 20px;
transition: .2s ease;
box-shadow: 0 0 6px 6px #FFAE00;
}

p{
font-size: 33px;

color: white;
text-align: center;
margin-top: 2px;
width: 100%;
}

.p1{

font-size: 23px;
line-height: 1.5;
color: white;
letter-spacing: 2px;
text-align: center;
padding: 40px;
background-color: #1F1734;
width: 67%;
margin: auto;
}

.p1 a{
text-decoration: none;
color: white;
}

.p1 a:hover{
color: #FCC004;
transition: .2s ease;
font-size: 24px;
}

.foot{
margin-top: 20px;
margin-bottom: 10px;
color: white;
text-align: center;
font-size: 20px;
margin: 30px 20px 34px 20px;
text-shadow: 1px -1px 0 #230033, 1px 2px 0 #230033;
}

.foot a{
text-decoration: none;
color: #F47A07;
}

.foot a:hover{
transition: .2s ease;
font-size: 21px;
}

.fa{
text-decoration: none;
}


.content{
display: none;
}

.loader-wrapper{
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background-color: #0F0234;
display: flex;
justify-content: center;
align-items: center;
}

.loader{
display: inline-block;
width: 30px;
height: 30px;
position: relative;
border: 4px solid white;
animation: loader 2s infinite ease;
}

.loader-inner{
vertical-align: top;
display: inline-block;
width: 100%;
background-color: white;
animation: loader-inner 2s infinite ease-in;
}

@keyframes loader{
0% { transform: rotate(0deg);}
25% { transform: rotate(180deg);}
50% { transform: rotate(180deg);}
75% { transform: rotate(360deg);}
100% { transform: rotate(360deg);}
}

@keyframes loader-inner{
0% { height: 0%;}
25% { height: 0%;}
50% { height: 100%;}
75% { height: 100%;}
100% { height: 0%;}
}

.load-text{
position: absolute;
top: 60%;
font-size: 20px;
color: white;
font-weight: bold;
animation: load-text 6s infinite ease;
letter-spacing: 3px;
}

@keyframes load-text{
0% { font-size: 20px;}
25% { font-size: 19.5px;}
50% { font-size: 20px;}
75% { font-size: 19px;}
100% { font-size: 20px;}
}