* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', 'Sora';
    font-size: 21px;
    
}

.navbar {
    background:white

}

.navbar .nav {
    display: flex; 
    justify-content: center;
    list-style-type: none;
    padding: .8em;
}

.navbar a {
    color: black;
    text-decoration: none;
    padding: .5em;
    font-size: 0.87em;
}

.navbar a:hover {
    font-weight: bold;
}

.hero {
    background: #f2f2f2;
    color: black;
    padding: 10em 1em;
    
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero .main-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    

}

.hero .main-col h1{
    font-size: 3em;
    
}

.hero .main-col h2{
    font-size: 2em;
    
}

.hero .main-col p{
    font-style: italic;
    color: gray;
    font-size: .7em;
    padding-top: 0.5em;
    text-align: center;
}

.hero .buttons {
    margin-top: 2.5em;
}

.hero a,  .buttons a {
    color: whitesmoke;
    text-decoration: none;
    background: #007af3;
    padding: 1em;
    border-radius: 5em;
    font-weight: bold;
}

.projects {
    background: #20272e;
    color: whitesmoke;
}

.projects .container {
    padding: 1em;
}

.projects .projects_container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.projects .header {
    display: flex;
    justify-content: center;
    padding: 1em 0 2em 0;
}

.projects .header h2 {
    font-size: 2em;
}

.projects img {
    width: 100%;
    height: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-style: solid;
    border-color: #007af3;
    border-width: 0.2em;
    border-radius: 0.5em;
}

.projects .gifactive {
    display: none;
}





.projects .projs {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    max-width: 1000px;
}

.projects .img {
    grid-row-start: 1;
    grid-row-end: 3;
}

.projects .first_proj {
    /* display: grid;
    grid-template-columns: 30% 70%; */
    padding-bottom: 2em;
    /* max-width: 1000px; */


}

.projects .tech {
    margin-top: 0.5em;
    font-weight: 300;
}

.projects a {
    text-decoration: none;
    font-weight: bold;
    color: whitesmoke;
}

.projects .about, .projects .technologies {
    padding: 0 1em;
}

.projects .about p{
    font-weight: 300;
}
.projects .descripton {
    padding-bottom: 2em;
}

.projects .technologies {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

.projects .technologies div {
    padding-right: 0.8em;
    padding-top: 0.8em;
    padding-bottom: .8em;
}

.projects .tech {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: whitesmoke;
    border-style: solid;
    border-color: #007af3;
    border-radius: 1em;
    padding: 0.3em;
    
}





.contact {
    background: #f2f2f2;
    color: black;
}

.contact .container {
    height: 100%;
}

.contact .header {
    font-size: 2em;
}


.contact form{
    display: flex;
    flex-direction: column;
}

.contact .col_left{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 4em;
}

.contact .sumbit-btn {

    background:#007af3;
    color: whitesmoke;
    font-weight: bold;
    border-radius: 3em;
    text-decoration: none;
    margin: 0 3em;
    margin-bottom: 2em;
    outline: none;
    border: none;
    cursor: pointer;
    padding: 1em 0;


}

.contact input, textarea {
    margin-bottom: 1em;
}

.contact h2 {
    padding: 1em 0;
}

.contact .nonbold{
    font-weight:normal;
}

.contact textarea {
    resize: none;
}



.contact .text {
    padding: 1em 0;
}

.contact .email {
    font-weight: bold;
    display: none;
}

.contact .buttons {
    padding-bottom: 2em;
}


.contact .buttons button {
    cursor: pointer;
    color: whitesmoke;
    text-decoration: none;
    background: #007af3;
    padding: 1em;
    border-radius: 5em;
    font-weight: bold;
    border: none;
}



.section-footer {
    padding: 0.3em 0 0.35em;
    font-style: italic;
    display: flex;
    justify-content: center;
}

.section-footer a {
    text-decoration: none;
}

.section-footer small, .section-footer a {
    font-size: small;
    color: gray;
}
@media only screen and (max-width: 590px) {
    .projects .first_proj {
        display: flex;
        flex-direction: column;
    }

    /* .hero .main-col h2 {
        font-size: 1.25em;
    } */

    .projects .about, .projects .technologies {
        padding: 0 0.2em;
    }

    .hero {
        padding: 6.5em 1em;
    }

}

@media only screen and (max-width: 420px) {
    .hero .main-col h2 {
        font-size: 1.25em;
    }




}