body{
    background-image: url(Pictures/bg.jpg);
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: rgb(221, 221, 221);
}

/* ---------- Navigation ---------- */

header{
  background-color: black;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

nav ul{
    list-style-type: none;
    background-color: rgb(0, 0, 0);
    padding: 0;
    margin: 0;
    overflow: hidden;
}

nav a{
    color: white;
    text-decoration: none;
    padding: 15px;
    display: block;
    border: 2px;
    border-style: solid;
    border-color: white;
    border-width: 50%;
    border-radius: 15px;
    transition: .3s cubic-bezier(0, 0.98, 1, 1);
    margin-right: 0.1cm;
}


nav a:hover{
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
}

nav li{
    position: relative;
    float: inline-end;
}

ul{
    list-style: none;
}

ul li a{
    display: block;
    font-size: 19px;
    text-transform: capitalize;
    color: rgb(221, 221, 221);
    text-decoration: none;
    transition: 0.4s;
}

/* ---------- Languages ---------- */

.dropdown .dropdown-btn{
  border: none;
  background-color: blue;
}

/* ---------- Articles ---------- */

.main{
    border: 10px;
    border-color: rgb(241, 241, 241);
    font-size: 30px;
    overflow: hidden;
    color: white;
    background-color: #9ce9ff;
}

.about, .characters, .apps, .credits{
    border: 10px;
    overflow: hidden;
    font-size: 30px;
    border-spacing: 10px;
}

.about{
    background-color: rgb(217, 217, 217);
    color: black;
}

.characters{
    background-color: #67e65e;
    color: white;
}

.apps{
    background-color: #ff4545;
    color: white;
}

.credits{
    background-color: #0693e3;
    color: white;
}

.news{
    border: 10px;
    font-size: 30px;
    overflow: hidden;
    color: black;
    background-color: white;
}

.news h3 {
    background: linear-gradient(
        to right,
        #7953cd 20%,
        #00affa 30%,
        #0190cd 70%,
        #764ada 80%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    background-size: 500% auto;
    animation: textShine 5s ease-in-out infinite alternate;
}

@keyframes textShine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}



/* ---------- Footer ---------- */

footer{
    display: flex;
    flex-wrap: wrap;
    margin-top: auto;
    padding: 60px 10%;
    overflow: hidden;
}

.footer-col{
    width: 25%;
}

.footer-col h2{
    position: relative;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 22px;
    color: rgb(112, 232, 253);
    text-transform: capitalize;
}

.footer-col h2::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    background-color: rgb(97, 199, 165);
    height: 2px;
    width: 40px;
}

.copyright{
    display: block;
    font-size: 20px;
    text-transform: capitalize;
    color: rgb(221, 221, 221);
    text-decoration: none;
    padding-left: 275px;
}

/* ---------- Misc ---------- */

img{
  border-radius: 25px;
}

#wave{
  position: relative;
    bottom: 3px;
}

.wave{
    position: relative;
    bottom: 3px;
} 

abbr { text-decoration: none;}