* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    background-color: #5d5a5a;
}



/* Splash screen */

.intro {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #4a4343;
    transition: 1.5s;
}

.welcome-header {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-family: 'Lobster', cursive;
}

.letter {
    position: relative;
    display: inline-block;
    bottom: -20px;
    opacity: 0;
    font-size: 2.5rem;
}

.blue{
    color: #298d8d;
}

.spacing{
    letter-spacing: 7px;
}

.letter.active {
    bottom: 0;
    opacity: 1;
    transition: ease-in-out 0.5s;
}

.letter.fade {
    bottom: 150px;
    opacity: 0;
    transition: ease-in-out 0.5s;
}

#pic {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 30px;
    opacity: 0;
}

#pic.active {
    opacity: 1;
    transition: 0.5s;
}






@media screen and (max-width: 500px) {
    .letter {
        font-size: 1.2rem;
    }


}

@media screen and (max-width: 1000px) {
    .letter {
        font-size: 2rem;
    }


}





.BG {
    min-width: 100%;
    height: 100vh;
    background-color: black;
    background-image: linear-gradient(to bottom right, rgba(251, 147, 72, 0.651), #48c5fb83);
}

.EM {
    color: white;
    font-size: 144px;
    font-family: 'Lobster', cursive;
    position: absolute;
    top: 15%;
    right: 25%;
    transform: translateY(-100%) translateX(25%);
    opacity: 0.2;
    transition: 1s;
    /* transform: translateY(-25%) translateX(25%); */
}

.ImgDisplayer {
    position: absolute;
    top: 50%;
    left: 25%;
    width: 50%;
    transform: translateY(-50%) translateX(-70%);
    opacity: 0.4;
    transition: 2s;
    
    /* transform: translateY(-50%) translateX(-40%) */
}

img {
    width: 100%;
}

.TextArea {
    position: absolute;
    top: 50%;
    right: 27%;
    color: #ffffff;
    transform: translateY(100%) translateX(20%);
    opacity: 0.2;
    transition: 3s;
    /* transform: translateY(-70%) translateX(20%); */
    text-align: center;
    font-family: "Open Sans", sans-serif;
    font-size: 30px !important;
}

.DevBy {
    position: absolute;
    bottom: 40px;
    right: 20px;
}

@media only screen and (max-width: 1500px) {
    .EM {
        font-size: 70px;
        right: 32%;
    }

    .TextArea {
        font-size: 40px;
        top: 40%;

    }
}

@media only screen and (max-width: 750px) {
    .EM {
        font-size: 45px;
        top: 15%;
        right: 22%;
        width: 50%;
        transform: translateY(-50%) translateX(20%);
    }

    .ImgDisplayer {
        width: 80%;
        top: 35%;
        left: 30%;
    }

    .TextArea {
        font-size: 20px !important ;
        top:35%;
        left: 5%;
        width: 450px;
        transform: translateY(-40%) translateX(20%);

    }
