@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@font-face {font-family: Aerlingua; src: url('Fonts/Aerlingua.otf');}

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    text-decoration: none;
    scroll-behavior: smooth;
}

body
{
    min-height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    background: linear-gradient(#2b1055,#7597de);
}

body::-webkit-scrollbar {
    display: none;
}

header
{
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 40;
}

header ul
{
    display: none;
}

header ul.active
{
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(2, 9, 18, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header ul li
{
    list-style: none;
    margin-left: 0em;
}

header ul li a
{
    font-size: 1.25em;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    margin: 1em 0em;
    padding: 6px 15px;
    display: inline-block;
    border-radius: 20px;
    transition: 0.5s;
}

header ul li a:hover,
header ul li a.active
{
    background: #fff;
    color: #2b1055;
}

a img
{
    position: relative;
    top: 0; left: 0;
    width: 64px;
    height: 64px;
}

nav
{
    position: absolute;
    top: 35px; right: 25px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: url('Pictures/Menu Interface/01.png');
    background-size: 30px;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 30;
}

nav.active
{
    position: fixed;
    top: 35px; right: 25px;
    background: url('Pictures/Menu Interface/02.png');
    background-size: 25px;
    background-position: center;
    background-repeat: no-repeat;
}

figure
{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

figure::before
{
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #020912, transparent);
    z-index: 40;
}

figure img
{
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    pointer-events: none;
}

figure img#img04,
figure img#img07,
figure img#img09,
figure img#img11,
figure img#img13
{
    mix-blend-mode: screen;
}

figure h1
{
    position: absolute;
    color: #fff;
    font-size: 6em;
    line-height: 1;
    text-align: center;
    text-shadow: 0px 10px 15px rgba(0, 0, 0, 0.5);
    transform: translateY(-90px);
    z-index: 10;
}

figure h2
{
    position: absolute;
    color: #fff;
    font-size: 3em;
    text-align: center;
    text-shadow: 0px 10px 15px rgba(0, 0, 0, 0.5);
    transform: translateY(-45px);
    z-index: 10;    
}

main
{
    position: relative;
    background: #020912;
    padding: 3em 6em 0em;
    z-index: 20;
}

main h2
{
    font-size: 2em;
    font-weight: 600;
    color: #fff;
    margin: 0.5em 0em;
}

main h3
{
    font-size: 1.5em;
    font-weight: 600;
    color: #fff;
    margin: 0.5em 0em;
}

main h4
{
    font-size: 1.5em;
    font-weight: 600;
    color: #fff;
    margin: 1.5em 0em 0em;
    overflow: hidden;
    white-space: nowrap;
}

main p
{
    font-size: 1.25em;
    font-weight: 300;
    color: #fff;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    word-spacing: -1px;
}

section
{
    padding-top: 1em;
}

section#section02 p
{
    color: #ccc;
}

section#section05 p
{
    font-size: 1em;
    color: #ccc;
}

section#subsection01,
section#subsection02
{
    padding-top: 0em;
}

section#subsection01 > h3,
section#subsection02 > h3,
section#subsection03 > h3,
section#subsection04 > h3,
section#subsection05 > h3,
section#subsection06 > h3,
section#subsection07 > h3
{
    background-color: rgba(0, 0, 0, 0.75);;
    background-image: url('Pictures/General/01.png');
    background-size: contain;
    background-blend-mode: soft-light;
}

article.inbetween
{
    margin-bottom: 1em;
}

article.creatures
{
    display: flex;
    align-items: center;
}

article p
{
    flex: 1;
}

video
{
    aspect-ratio: 16/9;
    border: 1px solid #ccc;
}

details p
{
    padding-top: 10px;
}

summary
{
    cursor: pointer;
    font-size: 1.25em;
    font-weight: bold;
    padding: 10px;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    word-spacing: -1px;
    border-bottom: 2px solid #ccc;  
}

#btn01
{
    position: fixed;
    bottom: 20px; right: 20px;
    background: #fff;
    padding: 0.75em;
    text-decoration: none;
    border: none;
    border-radius: 25px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-out;
    z-index: 50;
}

#btn01 span
{
    font-size: 1.5em;
    color: #412284;
    transition: 0.3s ease-out;   
}

#btn01:hover
{
    background: #aab4c8;
}

#btn01:hover span
{
    transform: translateY(3px);
}

.multimedia
{
    position: relative;
    width: 100%;
    margin: 1.5em 0em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team 
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
    width: 100%;
    margin: 1.5em auto 0em;
}

.member
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.member img 
{
    width: 75%;
    height: 75%;
    object-fit: cover;
}

.member p 
{
    text-align: center;
    margin-top: 1em;
}

.custom
{
    font-family: 'Aerlingua';    
}

.rotate
{
    transform: rotate(180deg);
    transition: 0.3s ease-in-out;
}

@media only screen and (min-width:320px)
{
    figure h1
    {
        font-size: 3.5em; 
    }

    video
    {
        width: 100%;
        height: 100%;
    }

    audio
    {
        width: 100%;
    }

    article img
    {
        width: 75%;
        margin-bottom: 1em;
    }
}

@media only screen and (min-width:425px)
{
    figure h1
    {
        font-size: 4.5em;
    }
}

@media only screen and (min-width:768px)
{
    figure h2
    {
        font-size: 2em;
        transform: translateY(-15px);  
    }

    video
    {
        width: 75%;
        height: 75%;
    }

    audio
    {
        width: 75%;
    }

    article img
    {
        width: 50%;
        margin-bottom: 1em;
    }
}

@media only screen and (max-width:768px)
{
    figure h2
    {
        display: none;    
    }
}

@media only screen and (min-width:990px)
{
    figure h1
    {
        font-size: 6em;
        transform: translateY(-130px);
    }

    figure h2
    {
        font-size: 2.5em;
        transform: translateY(-45px);
    }

    video
    {
        width: 50%;
        height: 50%;
    }

    audio
    {
        width: 50%;
    }

    article img
    {
        width: 35%;
        margin-bottom: 1em;
    }
}

@media only screen and (min-width:1024px)
{
    figure h2
    {
        font-size: 2.75em;
    }
}

@media only screen and (min-width:1440px)
{
    article img
    {
        width: 25%;
        margin-right: 0.75em;
    }
}

@media only screen and (max-width:1024px)
{
    body.no-scroll
    {
        overflow-y: hidden;
    }

    header
    {
        padding: 20px;
    }

    header .logo
    {
        font-size: 1.5em;
    }

    main
    {
        padding: 3em 1.5em 0em;
    }

    main h2
    {
        font-size: 1.5em;
    }

    main h3
    {
        font-size: 1.25em;
    }

    article.creatures
    {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}