body {
    font-family: 'Tajawal', sans-serif;
}

section {
    background-color: #ffffff;
}

.hero {
    background-color: #162F41;
    height: 100vh;
    color: #ffffff;
    font-size: 40px;
}

footer {
    background-color: #162F41;
    color: #ffffff;
    padding: 80px;
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
}

ul {
    display: flex;
    list-style-type: none;
    width: 500px;
    font-size: 24px;
    justify-content: space-around;
}

ul.show {
    display: block;
}

li {
    text-decoration: none;
}

h1 {
    font-size: 90px;
    font-weight: 500;
    margin: 0px;
}

h2 {
    font-size: 50px;
    font-weight: 400;
    margin: 0px;
}

p {
    margin: 10px;
    font-size: 30px;
    font-weight: 300;
}

.subtext {
    font-size: 15px;
    font-weight: 300;
}

.hero-area {
    display: flex;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}

.hero-text {
    margin-left: 80px;
    margin-bottom: 200px;
}

.socials {
    padding-bottom: 200px;
}

.social {
    margin: 20px;
}

.button {
    width: 200px;
    height: 40px;
    border-radius: 10px;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    background-color: #635bff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    margin: auto;
    line-height: 1.25rem; 
}

.button-text {
    /* padding-top: 8px; */

}

.button:hover {
    background-color: #534bef;
}

.button:active {
    background-color: #736bff;
}

.logo {
    height: 40px;
    margin: 20px;
}

.subsection {
    display: flex;
    justify-content: space-around;
    padding: 80px;
}

.information {
    width: 500px;
}

.headshot {
    width: 300px;
    border-radius: 150px;
    margin-left: 80px;
}

.headshot-container {
    display: flex;
    align-items: center;
}

.project-section {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 80px;
}

.project-container {
    display: flex;
    justify-content: space-around;
}

@media only screen and (max-width: 1000px) {
    .project-container {
        display: flex;
        flex-wrap: wrap;
    }
}

.project-card {
    width: 300px;
    /* height: 500px; */
    box-shadow: 5px 5px 20px #d0d0d0;
    margin: 10px;
    background-color: #162F41;
    color: #ffffff;
    padding: 4px;
}

.project-image {
    width: 200px;
    border-radius: 20px;
    border: 1px dashed #ffffff;
    margin-top: 25px;
}

.project-link {
    text-decoration: none;
    color: #635bff;
    font-size: 20px;
}

a {
    text-decoration: none;
    color: #ffffff;
}

hr {
    margin-left: 20px;
    margin-right: 20px;
    border: 1px dashed #ffffff;
}

.hamburger {
    display: none;
}

.hamburger:focus {
    outline: 0;
}

@media only screen and (max-width: 1000px) {
    .hamburger {
        display: block;
        border: 0;
        background-color: transparent;
        color: #ffffff;
        font-size: 30px;
        margin: 20px;
        align-self: flex-end;
    }

    ul {
        display: none;
        background-color: #193549;
        margin: 0px;
    }

    ul.show {
        display: block;
    }

    nav {
        display: flex;
        flex-direction: column-reverse;
        background-color: #193549; 
    }

    .logo {
        display: none;
    }

    .headshot {
        width: 200px;
        border-radius: 100px;
        margin-left: 80px;
    }

}

.hex {
    display: flex;
    align-items: center;
    margin: 0 auto;
    position: relative;
    width: 300px;
    height: 259.8px; /* width * 0.866 */
    background: #162F41;
    box-sizing: border-box;
    -webkit-clip-path: polygon(0% 50%, 25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%);
    -moz-clip-path: polygon(0% 50%, 25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%);
  }
  
  .hex-background {
    position: absolute;
    background-color: #162F41; /*color of the main-background*/
    top: 2px; /* equal to border thickness */
    left: 2px; /* equal to border thickness */
    width: 294px; /* container height - (border thickness * 2) */
    height: 255.8px; /* container height - (border thickness * 2) */
    -webkit-clip-path: polygon(0% 50%, 25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%);
    -moz-clip-path: polygon(0% 50%, 25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%);
  }
  
  .hex img {
    position: absolute;
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    -webkit-clip-path: polygon(0% 50%, 25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%);
    -moz-clip-path: polygon(0% 50%, 25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%);
  }