@font-face {
  font-family: BoldPixels;
  src: url(../fonts/BoldPixels1.4.ttf);
}

* {
    text-align: center;
    font-family: BoldPixels;
}

h1 {
    font-size: 48px;
    letter-spacing: 2px;
    font-weight: 550;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgb(181, 181, 181);
    color: white;
    mix-blend-mode:difference;
}

p {
    font-size: 32px;
    color: rgb(255, 255, 255);
    text-shadow: 0px 3px 0px rgba(255, 255, 255, 0.4);
}

/* Header */
header h1{ 
    font-size: 96px;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: rgb(181, 181, 181);
    text-decoration: underline;
    text-decoration-color: white ;
    padding-bottom: 20px;
}

header > img {
    display: block;
    position: fixed;
    height: 50%;
    top: -50px;
    margin: auto;
    left:0;
    right:0;
    z-index: -1;
    filter:blur(3px);

}

header > .dropdown{
    position: absolute;
    font-size: 32px;
    max-width: 60px;
    transform: translateX(275px) rotate(-25deg);
    top: 160px;
}

header > .dropdown > .dropdown-box {
    position:fixed;
    left: -10px;
    transform:/* translate(-150px, -50px) */rotate(25deg);
}

/* List */

header > ul {
    list-style: none; /* Removes default bullet points */
    padding: 0; /* Removes default padding from the unordered list */
    margin: 0;
    display: flex; /* Makes the unordered list a flex container */
    justify-content: center;
}

header > ul > li {
    width: 80px;
    height: 80px;
    margin-left: 12.5px;
    margin-right: 12.5px;
    background-color: #47bcff9b;
    box-shadow: 0 0 5px 5px #0f8fff93,
                0 0 10px 7px #96839e82,
                0 0 15px 20px #ffffff30;
    border-radius: 15px;
    animation: social-opening 1.5s ease;
}

.socialicon {
    position: relative;
    display:block;
    margin: 0 auto;
    top: 5px;
    width: 70px;
    height: 70px;
    opacity: 50%;
    animation: social forwards 0.5s ease;
}

.socialicon:hover {
    opacity: 100%;
    animation: social-hover forwards 0.5s ease;
}

@keyframes social-hover {
    0% {
        opacity: 50%;
        transform: scale(100%);
    }
    100% {
        opacity: 100%;
        transform: scale(105%)
    }
}

@keyframes social {
    0% {
        opacity: 100%;
        transform: scale(105%);
    }
    100% {
        opacity: 50%;
        transform: scale(100%)
    }
}

@keyframes social-opening {
    0% {
        opacity: 0;
        transform: scaleY(0);
    }
    100% {
        transform: scaleY(100%);
    }
}

/* Body Stuff */

body {
    background-color: #49008d;
}

/* Main Stuff */

main {
    position: relative;
    width: 60%;
    margin: 0 auto;
}

main > div {
    padding: 0;
    overflow: hidden; 
    margin: 40px;
    border-radius: 15px;
    background-color: rgba(160, 0, 0, 0.6);
      box-shadow: 0 0 5px 5px #ff0f5b,
              0 0 10px 7px #96839e,
              0 0 15px 20px #440b7978;
    animation: opening-animation 1.5s ease;
}

@keyframes opening-animation {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 100%;
    }
}

main > div > * {
    padding: 10px;
    margin: 0;
}

.topbox {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    max-height: 30px;
}

.topbox > button {
    position: absolute;
    top:-2px;
    transform: translateX(15px);
    padding-left: 95%;
}

/* Footer Stuff */

footer {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.5);
}

/* Other */

.backgroundimg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(101%);
    width: 100%;
    height: 100%;
    z-index: -5;
    filter: url("#shake0");
}

.transparentGradientBG {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,rgba(0, 0, 0, 0.7) 0%, rgba(247, 247, 247, 0) 50%, rgba(0, 0, 0, 0.7) 100%);
    mix-blend-mode:overlay;
    z-index: -5;
}

/* Drop Down Stuff */

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

.dropdown-box {
    display: none;
    position: absolute;
    border-radius: 15px;
    background-color: #4e4e4eae;
    max-width: 100px;
    box-shadow: 0px 5px 0px 0px rgba(0, 0, 0, 0.25);
    padding: 12px 16px;
    z-index: 5;
}

.dropdown:hover .dropdown-box {
    display: block;

}

/* Interactive Drop Down */

.dropbtn {
    background-color: #00000000;
    color: rgb(0, 0, 0);
    padding: 16px;
    border: none;
    font-size: 24px;
    cursor: pointer;
    position: relative;
    top: -1px;
    right: 24px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.5);
}

.dropdiv {
    overflow: auto;
    padding-bottom: -10px;
    border-radius: 0px 0px 15px 15px;
    background-color: #00000082;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    overflow: hidden;
}

@keyframes boxexpand {
    0% {
        max-height: 0;
        opacity: 0;
    }
    100% {
        max-height: 5000px; /* Match the hover state */
        opacity: 1;
    }
}

@keyframes boxclose {
    0% {
        max-height: 5000px;
        opacity: 1;
    }
    100% {
        max-height: 0; 
        opacity: 0;
      }
}

/* Gallery */
.dropdiv ul {
    display: flex;
    flex-direction: row;
    padding: 5px;
    list-style-type: none;
    
}

.dropdiv li {
    padding: 0;
    margin: 0 auto;
    max-width: 45%;
    background: linear-gradient(180deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 55%);    
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.gallerymedia {
    padding:0;
    width: 97%;
    border-style: dashed;
    border-width: 5px;
    background: rgba(204, 0, 255, 0.412);
    border-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 5px 5px #bb0fff1e,
              0 0 10px 7px #96839e59,
              0 0 15px 20px #440b7934;
}

/* Text & Animations */

.wavy span {
    background: linear-gradient(to right, #ff6666, #eeff00 , #00ff00, #33e4ff, #7366ff,#aa33ff,#ff00bb);
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 500% 100%;
    color: transparent;
    display: inline-block;
    animation: wave 2s ease-in-out infinite;
}

p > .wavy > span{
    background: url(../images/background/transflag.png);
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 16px 16px;
    display: inline-block;
    font-size: 32px;
    opacity: 100%;
    animation: wave 2s ease-in-out infinite;
}

.wavy span:nth-child(1) {
    animation-delay: 0s;
}
.wavy span:nth-child(2) {
    animation-delay: 0.2s;
}
.wavy span:nth-child(3) {
    animation-delay: 0.4s;
}
.wavy span:nth-child(4) {
    animation-delay: 0.6s;
}
.wavy span:nth-child(5) {
    animation-delay: 0.8s;
}
.wavy span:nth-child(6) {
    animation-delay: 1s;
}
.wavy span:nth-child(7) {
    animation-delay: 1.2s;
}
.wavy span:nth-child(8) {
    animation-delay: 1.4s;
}
.wavy span:nth-child(9) {
    animation-delay: 1.6s;
}
.wavy span:nth-child(10) {
    animation-delay: 1.8s;
}
.wavy span:nth-child(11) {
    animation-delay: 2s;
}
.wavy span:nth-child(12) {
    animation-delay: 2.2s;
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
        background-position: 0 0;
    }
    50% {
        transform: translateY(-5px);
        background-position: 100% 0;
    }
}
/* Mobile */

@media only screen and (max-width: 1000px) {
    main {
        width: 100%;
    }

}