/* INTRO TO ME */

/* Large Screen */
@media screen and (min-width: 1500px) {
    .center-div {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 5rem 10%;
    }

    .lesser-title {
        color: white;
        font-size: 4rem;
        margin-bottom: 5rem;
    }

    .horizontal-list{
        display: flex;
        flex-direction: row;
    }

    .icon-paragraph{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 5rem;
    }

    .paragraph-icon {
        width: 8rem;
        margin-bottom: 1rem;
    }

    .me-description {
        text-align: center;
        font-size: 1.5rem;
        color: rgb(145, 154, 165);
    }    
}

/* Medium Screen */
@media screen and (min-width: 1150px) and (max-width: 1499px){
    .center-div {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 5rem 10%;
    }

    .lesser-title {
        color: white;
        font-size: 4rem;
        margin-bottom: 5rem;
    }

    .horizontal-list{
        display: flex;
        flex-direction: column;
    }

    .icon-paragraph{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 5rem;
    }

    .paragraph-icon {
        width: 8rem;
        margin-bottom: 1rem;
    }

    .me-description {
        text-align: center;
        font-size: 1.5rem;
        color: rgb(145, 154, 165);
    } 
}
/* Small Screen */
@media screen and (min-width: 100px) and (max-width: 1150px){
    .center-div {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 2.5rem 10%;
    }

    .lesser-title {
        color: white;
        font-size: 2.5rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .horizontal-list{
        display: flex;
        flex-direction: column;
    }

    .icon-paragraph{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .paragraph-icon {
        width: 8rem;
        margin-bottom: 1rem;
    }

    .me-description {
        text-align: center;
        font-size: 1.2rem;
        color: rgb(145, 154, 165);
    }
}

.media-section {
    display: flex;
    justify-content: center;
    align-items: center;
}
.media-section > h2 {
    margin: 0;
}

/* FEATURED PROJECTS */

/* .project-grid{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.grid-block{
    position: relative;
    display: flex;
    flex-grow: 1;
    padding: 3rem 1rem;
    margin: 1rem;
    display: flex;
    flex-direction: column;
    background-color: black;
    color: white;
    border-radius: 25px;
    border: 1px solid white;
}

.project-section{
    position: relative;
    background-color: rgba(0, 0, 0, 0.80);
    padding: 1rem;
    border-radius: 25px;
    border: 1px solid white;
    opacity: 1;
}

.project-header {
    font-size: 1.5rem;
}
.project-description{
    font-size: 1.2rem;
}

/* .project-filter{
    filter: blur(8px);
    -webkit-filter: blur(8px);
} 

.fowl-play::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    background-image: url("../media/fowl-play-bg.png");
    background-color: #766e58;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 25px;
}
.fowl-play:hover::before{
    opacity: 1;
}

.ambition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    background-image: url("../media/ambition-reality-bg.png");
    background-color: #4b597b;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 25px;
}
.ambition:hover::before {
    opacity: 1;
}

.ancient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    background-image: url("../media/dino-icon-bg2.png");
    background-color: #624b7b;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 25px;
}
.ancient:hover::before {
    opacity: 1;
} */

/* .photography {
    background-image: url("../media/photography-bg.jpg");
    background-color: #4b597b;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
} */