/*all comentaries written here to try not getting mixed up xD*/
/*this was so damn hard help*/

body {
    background: linear-gradient(to bottom, #aaddae, #4f904f);
}

body,
html {
    height: 100%;
    margin: 0px auto;
    padding: 0px auto;
}
.wrapper {
    width: 100vw;
    position: fixed;
    display: flexbox;
}

/* INTRO SCREEN */
#intro {
    position: fixed;
    inset: 0;
    background: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    z-index: 9999;

    
    animation: introFade 2s ease forwards 1s;
  
}

@keyframes introFade {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        pointer-events: none;
    }
}

/* MAIN CONTENTTTTT */

ul.nav a {
    /*every single item in flexbox*/
    list-style: none;
    text-decoration: none;
    color: #eef2ea;
    font-family: "franklin Gothic Medium";
    margin: 6px;
    font-size: 30px;
}

ul.nav li {
    display: inline-block;
}

ul.nav {
    /*whole index flexbox*/
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    align-items: flex-end;
    gap: 17px;
}

.Titles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.monitowrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    position: fixed;
    bottom: 0;
    left: 0;
    animation: entrance-monito 1.5s ease-in-out forwards;
}

.monitowrap a img { /*alter size of the monito BUT IT WORKS LIKE HALF OF THE TIME*/
    min-width: 300px; 
    width: 35vw; 
    height: auto; 
    display: block; 
}
.monitohover {
    transition:
        filter 0.3s,
        transform 0.3s;
}
.monitohover:hover {
    cursor: pointer;
    filter: brightness(1.2) drop-shadow(0 0 3px #e0ffe3) drop-shadow(0 0 5px #c4ffc1);
    transform: scale(1.03);
}

#ThatBirbs {
    width: 30%;
    margin-bottom: 2%;
}
#Portfolio {
    width: 101%;
}

@keyframes entrance-monito {
    0% {
        transform: translateY(120%);
    }

    100% {
        transform: translateY(10%);
    }
}

.iconsLeft {
    position: fixed;
    bottom: -40vh;
    left: 20%; 
    transform: translateX(-50%);
    display: flex;
    justify-content: flex-start;
    gap: 4vw;
    
}

.iconsRight {
    position: fixed;
    bottom: -40vh;
    left: 80%; 
    transform: translateX(-50%);
    display: flex;
    justify-content: flex-end;
    gap: 4vw;
    
}

.iconsRight a,
.iconsLeft a {
    pointer-events: auto; 
}

.floating-icons {
    width: 15vw;
    min-width:200px;
    pointer-events: auto;

    animation:
        rise 1.4s ease-out forwards var(--delay),
        hover 2s ease-in-out infinite alternate calc(var(--delay) + 1.4s);
    transition:
        filter 0.3s,
        transform 0.3s;
}

.floating-icons:hover {
    cursor: pointer;
    filter: brightness(1.2) drop-shadow(0 0 3px #e0ffe3) drop-shadow(0 0 5px #c4ffc1);
    transform: scale(1.1);
}

/* EACH ICON GETS ITS OWN DELAY AND HEIGHT juju hihi */
.iconIlu {
    --delay: 1.3s;
    --rise-height: 64vh; 
}

.iconSewing {
    --delay: 1.5s;
    --rise-height: 82vh; 
}

.iconCoding {
    --delay: 1.7s;
    --rise-height: 88vh;
}

.icon3d {
    --delay: 1.8s;
    --rise-height: 56vh; 
}

@keyframes rise {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translateY(calc(-1 * var(--rise-height))) scale(1);
        opacity: 1;
    }
}

@keyframes hover {
    0% {
        transform: translateY(calc(-1 * var(--rise-height))) translateY(0);
    }
    50% {
        transform: translateY(calc(-1 * var(--rise-height))) translateY(-10px);
    }
    100% {
        transform: translateY(calc(-1 * var(--rise-height))) translateY(0);
    }
}

@font-face {
    font-family: MochiBoom;
    src: url(Mochi_Boom_DEMO.woff);
}