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

ul.link{
list-style-type: none;
margin: 0;
padding: 0;
width: 25%;
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;
}
}

.content1{
position: fixed;
right: 5%;
top: 17%;
float: right;
width: 440px;
height: 426px;
overflow-x: hidden;
overflow-y: scroll;
border-radius: 10px;
border: 1px solid red;
transition: .1s ease;
}

.content1:hover{
border: 1px solid #FF9191;
}

@media screen and (max-width: 900px){
.content1{
float: right;
}
}

.content2{
position: fixed;
bottom: 40%;
left: 26%;
transition: .2s ease;
width: auto;
}

.content2 img{
border-radius: 7px;
box-shadow: 0px 3px 90px red;
padding: 0px;
border: 3px dotted red;
transition: .2s ease;
}

.content2 .text{
color: white;
visibility: hidden;
opacity: 0;
transition: .2s ease;
display: block;
background-color: #1F0F29;
font-size: 25px;
padding: 10px;
position: absolute;
bottom: 110%;
right: 30%;
width: 50%;
height: 7%;
overflow: hidden;
text-align: center;
}

.content2:hover .text{
opacity: 1;
visibility: visible;
width: 200%;
height: 150%;
}

.content2:hover img{
filter: blur(1px);
opacity: 0.5;
padding: 5px;
}

.content2:hover{
left: 25.6%;
}

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

center{
display: block;
padding: 10px 0 20px 0;
}

center img{
border: 4px solid #5D2C68;
padding: 3px;
transition: .1s ease;
}

center img:hover{
border: 6px solid #E98514;
padding: 4px;
}

.text3{
margin: -3px 0 10px 0;
overflow: hidden;
}

.text3 a{
background-color: white;
border-radius: 10px;
border: 3px solid #385781;
font-size: 21px;
color: black;
transition: .2s ease;
display: block;
width: 145px;
}

.text3 a:hover{
color: white;
font-size: 23px;
background-color: #5A687C;
border: 3px solid #243A59;
width: 170px;
}

a{
text-decoration: none;
}

h2{
font-size: 38px;

color: black;
text-align: center;
margin-bottom: 10px;
color: white;
}

.text1{
position: fixed;
bottom: 2%;
right: 3%;
text-align: center;
font-size: 20px;
color: white;
}

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

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

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