@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&family=Ubuntu:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@300;400;500;600;700;800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

.max-width{
    max-width: 1500px;
    padding: 0 50px;
    margin: auto;
}
/*Nav Bar*/

/* navbar styling */
.navibar{
    position: fixed;
    width: 100%;
    padding: 20px 0;
   /* background: teal; */
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
}

.navibar .sticky{
    padding: 10px 0;
    background: teal;
}

.navibar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navibar .logo a{
    color: teal;
    font-size: 35px;
    font-weight: 500;
}

.navibar .sticky .logo a{
    color: grey;
}

.navibar .menu li
{
    list-style: none;
    display: inline-block;
}

.navibar .menu li a{
    display: block;
    color: grey;
    font-size: 20px;
    font-weight: 460;
    margin-left: 27px;
    transition: color 0.3s ease;
}

.navibar .menu li a:hover{
    color: teal;
}

.navibar .sticky .menu li a:hover{
    color: grey;
}

/* navbar dropdown*/
.navibar .navi-dropdown{
    position: relative;
    display: inline-block;
}

.navibar .dropbutton{
    background-color:#F7EBEB;
    color: grey;
    padding: 16px;
    font-size: 20px;
    font-weight: 460;
    font-family: 'Roboto', sans-serif;
    border: none;
}

.navibar .navi-dropdown .dropdown-content{
    display: none;
    position: absolute;
    background-color: grey;
    min-width: 160px;
    z-index: 1;
}

    /* Links inside the dropdown */
.navibar .navi-dropdown .dropdown-content a{
    color: teal;
    text-decoration: none;
    display: block;
}

    /* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #403E3E;}

    /* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

    /* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #3e8e41;}

/* menu btn styling*/
.menu-tog{
    color:#000;
    font-size: 30px;
    cursor: pointer;
    display: none;
}

.s1{
    background-color: #F7EBEB;
    position: static;
    overflow: auto;
}

/*HOME PAGE STYLING*/
.home-container{
    height: 70vh;  
    position: static;
    display: flex;
    /*background-color: #F7EBEB;*/
}

.text-container{
    color: #403E3E;
    font-family: 'Roboto', sans-serif;
}

/*####### home page text*/
.hello-wrapper{
    /*justify-content: center; /*aligns horizontally*/
    text-align: center;
    align-content: center;   /*aligns vertically*/
    font-size: 50px;
}

.description-wrapper{
    display: grid;
    justify-content: center; /*aligns horizontally*/
    align-content: center;   /*aligns vertically*/
    font-size: 30px;
    margin: 5px 0;
}

.passion-wrapper{
    font-family: 'Inconsolata', monospace;
    font-size: 30px;
}


/*
.contact-container{
    size: 5px;
    min-height: 10px;
    /*position: center;
}*/

/*.home .max-width{
    margin: auto 0 auto 40 px;
}*/



/*TECH/CAREER PAGE STYLING*/

/*.container-fluid{
    /*width: 100%;
    padding-left: auto;
    padding-right:auto;
}*/

/*
.row:after{
    max-width: 500px;
    display: table;
    clear: both;
}
*/

.tech-container{
    margin-right: 10px;
    margin-left: 10px;
    /* margin-bottom: 10px; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 38em;
    grid-template-areas: 
    'resume-column highlights-column'
    ;
}

.resume-column{
    grid-area: resume-column;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: teal;
    color: #F7EBEB;
    font-family: 'Ubuntu',sans-serif;
    font-size: 40px;
    /*flex-direction: column;
    position: relative;
    width: 50%;
    float: left; */
   
}

#resume{
    margin-top: 20px;
    margin-left: 10px;
    margin-right: 10px;
    height: 500px;
}

.highlights-column{
    grid-area: highlights-column;
    padding-top: 20px;
    text-align: center;
    background-color: #C3E8E8;
    color: #005757;
    font-size: 40px;
    font-family: 'Ubuntu',sans-serif;
    /*flex-direction: column;
    position: relative;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
    width: 50%;
    float: left; */
}

.highlights{
    margin-top: 15px;
    margin-left: 10px;
    color: #403E3E;
    text-align: left;
    font-size: 30px;
    line-height: 1.6;
}


/*PROJECTS SECTION*/


.project-container{
    background-color: #F7EBEB;
    padding-bottom: 20px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 3em 20em;
    grid-row-gap: 60px;
    grid-column-gap: 10px;
    grid-template-areas: 
    'projects-wrapper projects-wrapper projects-wrapper'
    'proj-card proj2-card proj3-card'
    ;
}

.projects-wrapper{
    grid-area: projects-wrapper;
    text-align: center;
    color: grey;
    margin-top: 40px;
    margin-bottom: 10px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 40px;
    line-height: 0.8;
    
}

.proj-card{
    border-radius: 15%;
    color: #C3E8E8;
    background-color: #005757;
    margin-left: 20px;
    margin-right: 20px;
    padding-top: 20px;
}

.title-wrapper{
    color: #F7EBEB;
    text-align: center;
    font-family: 'Inconsolata', monospace;
    font-size: 30px;
}

.other-info{
    display: flex;
    justify-content: space-around;
    font-family: 'Inconsolata', monospace;
    position: static;
    margin-top: 10px
}

#link{
    background-color: #403E3E; 
    color: #C3E8E8;
    font-size: 20px;
    margin-left: 40px;
    margin-right: 40px;
    margin-top: 210px;
    border-radius: 30%;
    padding: 4px 4px;
    position: static;
}

#hack{
    /* margin-top: 150px;  */
    font-size: 13px;
    color: #C3E8E8;
    border-radius: 30%;
    padding: 4px 4px;
    position: static;
} 

.technologies{
    justify-content: space-between;
    /* margin-bottom: 0px;  */
    font-size: 13px;
    border-radius: 30%;
    padding: 4px 4px;
    position: static;
} 

.description{
    text-align: left;
    margin-left: 20px;
    margin-top: -230px;
}

/* OTHER SECTION */

.others-container{
    margin-right: 10px;
    margin-left: 10px;
    /* margin-bottom: 10px; */
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 5em 10em 10em;
    grid-template-areas: 
    'projects-wrapper projects-wrapper projects-wrapper'
    'other1-column other2-column other3-column'
    'other4-column other4-column other4-column';
}

.other1-column{
    grid-area: other1-column;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: teal;
    color: #F7EBEB;
    font-family: 'Ubuntu',sans-serif;
    font-size: 40px;
}

.other2-column{
    grid-area: other2-column;
    padding-top: 20px;
    text-align: center;
    background-color: #C3E8E8;
    color: #005757;
    font-size: 40px;
    font-family: 'Ubuntu',sans-serif;
}


.other3-column{
    grid-area: other3-column;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: teal;
    color: #F7EBEB;
    font-family: 'Ubuntu',sans-serif;
    font-size: 40px;
}

.other4-column{
    grid-area: other4-column;
    padding-top: 40px;
    /* padding-bottom: 40px; */
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: teal;
    color: #F7EBEB;
    font-family: 'Ubuntu',sans-serif;
    font-size: 40px;
}

/* #learntoread{
    height: 50%;
    width: 50%;
} */



/* colour option: #403E3E */

/* responsive media query start*/
/* the following code commented out is to make the text 'Hi, my name is...' align with Inaya Rajwani at the top left corner
@media (max-width:991px){

}
@media (max-width:991px){
    
}*/

/*overall screen reduction*/
@media screen and (max-width: 1200px){
	.main-container{
		width: 95%;
	}
    .tech-container{
		margin-right: -30px;
	}

}

/*screen reduction resume/highlights section*/
@media screen and (max-width: 800px){
	.tech-container{
		margin-right: -25px;
        grid-template-columns: 1fr;
		grid-template-areas: 
			'resume-column'
			'highlights-column'
		;
	}

	.highlights-column{
		justify-content: center;
	}

    #highlights{
        margin-bottom: 20px;
    }

}

@media screen and (max-width: 100px){
    .tech-container{
        margin-right: 30px;
    }
}

/*
@media (max-width:991px){
    .max-width{
        padding: 0 25px;
    }
    .menu-tog{
        display: block;
        z-index: 1000;
    }
    .menu-tog i.active:before{
        content: "\f00d";
    }
    .navibar .menu{
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        background: #111;
        text-align: center;
        padding-top: 15px;
        transition: all 0.3s ease;
    }
    .navibar .menu .active{
        left: 0;
    }
    .navibar .menu li {
        display: block;
    }
    .navibar .menu li a{
        display: inline-block;
        margin: 30px 0;
    }
    
}*/