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

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

}

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

p{
font-size: 23px;

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

.p1{
margin-top: 30px;
}


.p1 a{
text-decoration: none; 
color: #F47A07;
padding-left: 10px;
padding-right: 10px;
}


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

.p2{
text-align: center;
font-size: 25px;
margin-top: 5px;
margin-bottom: 80px;
text-shadow: 1px -1px 0 #230033, 1px 2px 0 #230033;
}

.p3{
color: white;
margin-top: 0px;
margin-left: 20px;
margin-right: 20px;
text-align: center;
font-size: 30px;
text-shadow: 1px -1px 0 #230033, 1px 2px 0 #230033;
}

h1{
font-size: 50px;
font-weight: bold;
color: white;
text-align: center;
text-shadow: 0 0 20px #5D20B5, 0 0 10px #B5206F;
}

.video{
width: 100%;
margin: 60px 0 10px -5px;
}

.video iframe{
box-shadow: 0 0 7px 7px #7800B0;
}

@media screen and (max-width: 900px){
.video iframe{
width: 450px;
height: 340px;
}
}

.cat1{
position: absolute;
top: 32%;
left: 20%;
}

.cat2{
position: absolute;
right: 80%;
bottom: -24%;
opacity: 0;
transform: scaleX(-1);
}

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

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

.pic{
box-shadow: 0 0 7px 7px #7800B0;
}

@media screen and (max-width: 900px){
.pic{
width: 450px;
height: auto;
}
}

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