/* ================================= 
    Base Element Styles
==================================== */
/* Font */



body {
	line-height: 1.6;
    color: rgb(223, 228, 244);
    display: flex;
    flex-direction: column;
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;

}

header {
    /* background-color: #73EEDC;
    background-image: url(/img/DSC_0057.jpg); 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom; */
    /* z-index: 1; */
}

header p {
    font-size: 1.4em;
}
h1 {
    font-size: 60px;
}

h2 {
    margin-top: 35px;
    font-size: 35px;
}   

footer p {
    padding: 2.4em 0;
    text-align: center;
}

/* Hero-Section */

.me-img {
    height: 300px;
    border-radius: 50%;
    transition: transform .5s;
}

.me-img:hover {
    transform: scale(1.1) rotate(5deg) translateY(-20px);
}

/* Nav-Section */

.main-nav {
    display: flex;
    justify-content: space-evenly; 
    background-color: #A39594;
}

.main-nav li {
    padding: 55px;
}

.main-nav a {
    text-decoration: none;
    color:rgb(132, 223, 124);
    font-size: 1.4em;

}

.main-nav li:hover {
    transform: scale(1.1) rotate(-5deg) translateX(10px);
    background: rgba(210, 23, 210, 0.495);
    border-radius: 45%;
    color: #ffff;
    cursor: pointer;
}




/* ========================== 
    Base Layout Styles:
==============================*/

.wrap {
    flex-grow: 1;
}

.sketch-holder {
    margin: 0;
    overflow: hidden;
}
/* ========================== 
    Components: 
==============================*/

/* ==========================
Tabs:
==============================*/

 /* Style the tab */
 .tab {
    margin-top: -80px;
    overflow: hidden;
  }
  
  /* Style the buttons that are used to open the tab content */
  .tab button {
    float: left;
    font-size: 20px;
    border-radius: 10px 10px 0px 0px;
    border-bottom: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    background-color: rgba(2, 0, 36, 1);
  }
  
  /* Change background color of buttons on hover */
  .tab button:hover {
    background-color: #5b5beb;
  }
  
  /* Create an active/current tablink class */
  .tab button.active {
    background-color: #7cdba7;
    text-shadow: 1px 1px 0px #5b5beb;
  }
  
  /* Style the tab content */
  .tab_content {
    /* display: none; */
    padding: 6px 12px;
    border: 2px solid #f9f9f9; 
    border-radius: 5px;
    background: linear-gradient(180deg,rgba(2, 0, 36, 1) 0%, rgba(27, 79, 27, 1) 67%, rgba(38, 82, 2, 1) 100%);
  } 

/* Project Section */
.project_header {
    display: flex;
    margin: 0px  0px 100px 50px;
    flex-direction: row;
    font-size: 42px;
}

.projects {
    margin: 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.project {
    margin: 35px;
    flex-basis: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.project-description {

    transition: opacity .5s;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    
    color: #fff;
    overflow: hidden;
}

.project-overlay h3 {
    margin-top: 0;
}

.project button {
    margin-top: 25px;
    align-self: center;
}

/* Project-image */

.project img {
    width: 350px;
    height: 200px;
    transition: transform .5s;
}

.project:hover  img{
    transform: scale(1.1) rotate(5deg) translateY(-20px);
}
/* Project Details */



/* ---- Layout Containers */

.wrap {
    background: #020024;
   background: linear-gradient(348deg,rgba(2, 0, 36, 1) 0%, rgba(54, 54, 133, 1) 35%, rgba(9, 133, 11, 1) 100%);
}

.container {
    padding-left:  1em;
    padding-right: 1em;
}

.about_me {
    display: block;
    font-size: 25px;
    padding: 50px;
    overflow: hidden;
    
}

.main-header {
    text-align: center;
	padding-top: 1.5em;
	padding-bottom: 1.5em;
	background: #423E37;
    margin-bottom: 30px;
}

.main-footer {
    background: #f9f9f9;
    text-align: center;
    background-color: #262528;
}

/* ---- Page Elements  */

/* Footer-Styles */

.footer-link { 
	color: rgb(132, 223, 124);
    text-decoration: none;
    font-weight: bold;
}

/* ---- Header Section */
/* Wrap Header Text */

.wrap header h1 {
    font-weight: bold;
    color: rgba(254, 254, 254, 0.934);
    text-shadow: 2px 2px  2px rgba(0, 0, 0, 0.88);
}

.wrap header p {
    font-weight: bold;
    color: rgba(254, 254, 254, 0.934);
    text-shadow: 2px 2px  3px rgb(29, 29, 29);
}


/* ----- Projects Section */

/* ========================== 
    Media Queries:
==============================*/

@media (min-width: 769px) {
    .wrap {
        min-height: calc(100vh - 121px);
    }

    header {
        overflow: hidden;
    }
    .me-img {
        display: block;
        margin: 2.5em auto;
    }

    header h1,
    header p {
        text-align: center;
    }


    h2 {
        text-align: center;
    }

}

