
  @import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;1,100;1,200;1,300;1,400;1,500&family=Foldit&family=Montserrat:wght@400;500&family=Playfair+Display&family=Playfair+Display+SC&family=REM:wght@600&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;1,100;1,300;1,400;1,500&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body{
    line-height: 1.4;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
}

.hero_section{
    background-image: url(/Project4/images/developer.png);
    min-height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.text_container{
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 64px;
    padding-left: 16px;
}

.lg_text{
    font-size: 72px;
    font-weight: 400;
}

.black_box{
    background-color: #000;
    padding: 20px;
}
.black_box h2 {
    font-size: 72px;
    font-weight: 300;
    color: #fff;
    text-align: center;
}
.black_box h2 span{
    font-size: 96px;
    font-weight: 400;
}

/* Card Container */
.work{
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    margin: 50px auto;
    max-width: 1100px;
}

.grid_item{
    display: flex;
    justify-content: center;
    align-items: center;
}

.card{
    max-width: 320px;
    height: 400px;
    border-radius: 10px;
    box-shadow: 3px 5px 5px rgba(1, 1, 1, .2);
    transition: 0.2s ease-in-out;
}
.card_content{
    padding: 20px;
}
.card_content h3{
    margin-bottom: 10px;
}

.card:hover{
    transform: scale(1.04);
    box-shadow: 3px 5px 5px rgba(1, 1, 1, .3);
    transition: 0.2s ease-in-out;
}

/* Contact/About section */
.bottom_section{
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact{
    background-color: #515603;
}
.about{
    background-color: #722300;
}
.contact, .about{
    min-height: 300px;
    padding: 32px;
    color: #fff;
}
.contact p, .about p{
    margin-bottom: 20px;
}
.contact h2, .about h2{
    font-size: 50px;
    font-weight: 300;
}

/* footer */
footer{
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    background-color: #000;
    color: #fff;
    padding: 20px;
}

/* Responsive */

@media (max-width: 786px){

    .hero_section{
        min-height: 50vh;
    }
    .text_container{
        text-align: left;
        padding: 10px 10px;
    }
    .lg_text{
        font-size: 25px;
    }
    .black_box h2{
        font-size: 24px;
    }
    .black_box h2 span{
        font-size: 32px;
        font-weight: 400;
    }
    .bottom_section{
        flex-direction: column;
    }
    h1{
        font-size: 25px;
    }
    .contact h2, .about h2{
        font-size: 25px;
    }
}