/* GLOBAL */

*{
    box-sizing: border-box;
}

body{
    background-color: rgb(252, 242, 242);
    font-family: 'Optima', sans-serif;
    margin: 2%;
    color: rgb(0, 0, 0);
}

img{
    max-width: 100%;
    height: auto;
}

.section-title{
    text-align: center;
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
}

.section-description{
    text-align: center;
}

/* SCROLLING */

.AfterScrollBlock{
    display: block;
}  

.AfterScrollFlex{
    display: flex;
}

/* HEADER */

.nav-item{
    text-align: center;
    color: #29278e;
}

/* TYPING */

.typing-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 81%;
    margin-bottom: 81%;
}

#feature-text{
    font-size: 55px;
    color: black;
    font-family: 'Times New Roman', Times, serif;
}

@keyframes blink {
    0% {opacity: 1;}
    40% {opacity: 1;}
    60% {opacity: 0;}
    100% {opacity: 0;}
}

.input-cursor {
    display: inline-block;
    width: 2px;
    height: 63px;
    background-color: #000000;
    margin-left: 8px;
    animation: blink .6s linear infinite alternate;
}

/* ABOUT */

#about-section{
    margin-bottom: 10%;
}

#full-size-img{
    visibility: hidden;
}

#hello{
    font-size: 30px;
    margin-top: 0px;
    margin-left: 5%;
    margin-bottom: 0px;
}

#bg-photo{
    height: 100%;
    background-image: url('../img/me.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.bio-bold-sentence{
    font-weight: bold;
}

/* WORK */

#work-section{
    margin-top: 10%;
    margin-bottom: 10%;
}

.work-title{
    text-align: center;
    color: #29278e;
}

a{
    text-decoration: none;
    text-align: center;
    color: #29278e;
}

.work-description{
    margin-bottom: 5%;
    display: none;
}

/* CONTACT */

#contact-section{
    margin-top: 10%;
    margin-bottom: 10%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.fa{
    font-size: 30px;
    color: #29278e;
}

@media screen and (min-width:1080px){

    .typing-container {
        height: 100px;
        margin-top: 0%;
        margin-bottom: 0%;
    }

    /* ABOUT */

    #about-section{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #bg-photo{
        margin-right: 2%;
        width: 60%;
    }

    #bio{
        margin-left: 2%;
        width: 40%;
    }

    #hello{
        font-size: 50px;
    }

    .typing-container {
        margin-top: 30%;
        margin-bottom: 30%;
    }

    /* WORK */

    #work-section{
        display: flex;
        justify-content: space-between;
    }

    .work{
        width: 30%;
    }

}