.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("56.gif") no-repeat center;
background-size: cover;
height: 330px;
position: relative;

}

@media screen and (max-width: 600px){
.back{
height: 400px;
}
}

h1{
font-size: 40px;

font-weight: bold;
color: white;
text-align: center;
text-shadow: 0 2px 10px #5D20B5;
}

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: 24px 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;
}
}

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

.p1{
margin-top: 30px;
}


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

}

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

.p2{
text-align: center;
font-size: 25px;
margin-top: 5px;
margin-bottom: 80px;
}

.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;
}

.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;}
}