body {
    background: linear-gradient(to bottom, #aaddae, #4f904f);
}

body,
html {
    height: 100%;
    margin: 0px auto;
    padding: 0px auto;
}
.wrapper {
    width: 100%;
    position: fixed;
}

/* 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;

    /* Fade after delay */
    animation: introFade 2s ease forwards 1s;
    /* (3s fade-out) (2s fully visible before fading) */
}

@keyframes introFade {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        pointer-events: none;
    }
}

/* MAIN CONTENTTTTT */

h2 {
    font-size: 72px;
    background: -webkit-linear-gradient(#eee, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "MochiBoom";
}

ul.nav a {
    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 {
    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;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    
    position: fixed;
    bottom: 0px;
    left: 0%;
    animation: entrance 1.5s ease-in-out forwards;
}
img.monito {
    width: 50%;
    min-width:500px;
}

#ThatBirbs {
    width: 30%;
    margin-bottom: 2%;
}
#Portfolio {
    width: 101%;
}

@keyframes entrance {
    0% {
       
        transform: translateY(120%);
    }

    100% {
     
        transform: translateY(10%);
    }
}

@font-face {
    font-family: MochiBoom; /*a name to be used later*/
    src: url(Mochi_Boom_DEMO.woff); /*URL to font*/
}