/*
@font-face {
    font-family: 'nimbus_sans_d_otlight';
    src: url('https://raw.githubusercontent.com/ForeverPyrite/Crazy-Clean-Font/main/font-files/nimbus-sans-d-ot-light.woff2') format('woff2'),
         url('https://raw.githubusercontent.com/ForeverPyrite/Crazy-Clean-Font/main/font-files/nimbus-sans-d-ot-light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
*/

/* Basic Stuff */

html {
    font-family: Arial, Helvetica, sans-serif;
    max-width: 100vw;
    min-height: 100%;
}

body {
    min-height: 100vh;
    height: auto;
    background-color: #242424;
    align-self: center;
    margin: 0;
    display: grid;
}

/* Header */

header {
    min-width: 100%;
    max-height: 5vh;
    background-color: #002220;
    display: flex;
    height: auto;
    width: inherit;
}

header div {
    display: flex;
    padding: 8px;
    align-content: center;
}

header div span {
    text-align: justify;
    align-content: center;
    padding: 8px;
    align-self: auto;
    width: auto;
    height: auto;
}

/* Main Content, the body that's not actually tagged body */

main {
    min-height: fit-content;
    margin: 2% 17%;
    width: inherit;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: unset;
    justify-items: center;
}

#container {
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
}

iframe {
    min-height: 75%;
    width: 100%;
    height: 90%;
}

/* Articles */
article {
    display: flex;
    flex-direction: column;
}

article h1{
    text-indent: 36px;
    padding: 0 16px 0;
    height: fit-content;
    width: fit-content;
}

article p {
    text-indent: 36px;
    line-height: 24px;
    justify-content: center;
    height: 85%;
    width: 85%;
    align-self: center;

}

/* Footer */

.footer-contents {
    display: flex;
    margin: 2.5vh 15vw;
    width: inherit;
    height: 85%;
}

#logo {
    display: flex;
    height: auto;
    width: 20vw;
    padding: 3px;
    justify-content: right;
}

#logo span{
    font-size: 2cqw;
    display: inline-block;
    text-align: right;
    padding-right: 13px;
}

footer .social {
    height: auto;
    display: flex;
    flex-direction: column;
    align-content: center;
}

footer .social span{
    height: auto;
    text-align: center;
    display: inline-block;
    font-size: 1cqb;
}

footer .social .social-icons {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    align-items: center;
    padding: 4px;
}

.social-icons i {   
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    color: #33fff3;
  }

  #gu:hover {
    transform: scale(1.7); /* Enlarges on hover */
    opacity: 0.7; /* Adds a fading effect on hover */
    color: #93641d;
  }
  
  #yt:hover {
    transform: scale(1.7); /* Enlarges on hover */
    opacity: 0.7; /* Adds a fading effect on hover */
    color: #ff0000;
  }
  
  #ig:hover {
    background-image: linear-gradient(225deg, #ffbf18, #fc0030, #ff00cf, #610fcb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; 
    transform: scale(1.7); 
    opacity: 0.7; 
  }

  #tt:hover {
    background-image: linear-gradient(135deg, #0cf7ef, #ff1040);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; 
    transform: scale(1.7); 
    opacity: 0.7; 
  }

.footer-links {
    float: inline-end;
    display: flex;
    width: 30vw;
    height: auto;
    justify-content: space-around;
}

.footer-links div {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
}

.footer-links div span {
    padding: 8px, 5px;
}



#foreverpyrite {
    margin: 0;
    height: fit-content;
    width: fit-content; 
    color: #33fff3;
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;  
    scale: (1);
    user-select: none;
    align-self: center;
    justify-self: center;
}

/* DVD bounce effect for foreverPyrite (credit: RobotWizard on CodePen) */
#foreverpyrite.bounce-dvd {
    height: 50px;
    width: 180px;
    background-repeat: no-repeat;
    background-size: 75px;
    background-position: center;
    z-index: 9999;
    border-radius: 12px;
    text-align: center;
    line-height: 50px;
    font-size: 2rem;
    pointer-events: auto;
    cursor: pointer;
}


#four04 {
    display: flex;
    height: 75vh;
    align-items: center;
    text-align: center;
    justify-items: center;
    flex-direction: column;
    vertical-align: middle;
}

#four04 button {
    border-radius: 15px;
    padding: 15px;
    background-color: #002220;
    transition-duration: 0.4s;
    transition-timing-function: ease-out;
    border-width: 0;
}

#four04 button:hover {
    background-color: #33fff3;
    cursor: pointer;
}