body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

section {
    background-color: white;
}

.hero {
    background-color: #1c1d25;
    height: 100vh;
    color: white;
    font-size: 40px;
}

footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 80px;
}

nav {
    display: flex;
    justify-content: space-between;
    overflow: auto;
}

nav a{
    float: left;
    padding: 0;
    margin: 0;
    border: 0;
    font-size: 100%;
    outline: 0;
    color: white;
    text-decoration: none;
    width: 100%;
}

ul {
    display: flex;
    list-style-type: none;
    width: 100%;
    justify-content: space-around;
    font-size: 30px;
}

li {
    text-decoration: none;
}

h1 {
    font-size: 90px;
    margin: 0;
}

h2{
    font-size: 50px;
    text-align: center;
}

h3{
    font-size: 20px;
    text-align: center;
}

p {
    margin: 0;
    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;
}

.button {
    width: 200px;
    height: 55px;
    border-radius: 30px;
    background-color: coral;
    text-align: center;
    font-size: 30px;
    font-weight: 300;
    padding-top: 5px;
    margin-top: 20px;
}

.button:hover {
    background-color: #ef744b;
}

.button:active {
    background-color: #A9A9A9;
    color: #808080;
}


.logo {
    height: 80px;
    margin: 30px;
}


.sub-section {
    display: flex;
    justify-content: space-around;
    padding: 80px;
}

.sub-section-alternative {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 80px;
}

.headshot {
    height: 300px;
    width: 300px;
    border-radius: 150px;
    margin-left: 80px;
}

.headshot-container {
    display: flex;
    align-items: center;
}

.project-card {
    width: 300px;
    height: 500px;
    box-shadow: 5px 5px 20px rgb(197, 195, 195);
    margin: 10px;
}

.project-container {
    display: flex;
    justify-content: space-around;
}

@media only screen and (max-width: 1000px) {
    .project-container {
        display: flex;
        flex-wrap: wrap;
    }
}

.project-image {
    margin-top: 25px;
    width: 250px;
    /* border-radius: 125px; */
}

hr {
    margin-left: 20px;
    margin-right: 20px;
}

.project-link {
    text-decoration: none;
    color: #ef744b;
}

a {
    text-decoration: none;
    color: white;
}

.hamburger {
    display: none;
}

.hamburger:focus{
    outline: 0;
}

.bar-container{
    width: 600px;
}

.sec-cont{
    margin: 400px;
    margin-top: 0%;
    margin-bottom: 8%;
}

.skill-list{
    margin: 400px;
    margin-top: 0%;
    margin-bottom: 0%;
    letter-spacing: 2px;
}

.progress-bar{
    background-color: coral;
    height: 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1em;
    animation: animate 10s ease-in infinite;
    -webkit-animation: animate 10s ease-in infinite;
}

.button-icon{ 
    width: 80px;
    height: 40px;
    border-radius: 30px;
    background-color: coral;
    font-size: 30px;
}

.icon a{
    display: inline-block;
    border: 5px;
}

@media only screen and (max-width: 1000px) {
    .hamburger {
        display: block;
        border: 0;
        background-color: transparent;
        color: white;
        font-size: 30px;
        margin: 20px;
        align-self: flex-end;
    }

    ul {
        display: none;
        background-color: #2b2c38;
        margin: 0ppx;
    }

    ul.show {
        display: block;
    }

    nav {
        display: flex;
        flex-direction: column-reverse;
        background-color: #2b2c38;
    }

    .logo {
        display: none;
    }
}


.text{
    margin-top: 3.5em;
}

@keyframes mca{
    100%{
        width: 50%;
    }
}

@keyframes bsc{
    100%{
        width: 64%;
    }
}

@keyframes c12{
    100%{
        width: 71%;
    }
}

@keyframes c10{
    100%{
        width: 87%;
    }
}

input{
    width: 50%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

button {
    background-color:coral;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

h1 {
    overflow: hidden;
    border-right: .15em; 
    white-space: nowrap; 
    margin: 0 auto; 
    letter-spacing: .15em;
    animation: 
      typing 3.5s steps(40, end),
      blink-caret .75s step-end infinite;
  }
  
  @keyframes typing {
    from { width: 0 }
    to { width: 100% }
  }
  

  @keyframes animate{
    0%{
        background-position: 0 50%;
    }
    50%{
        background-position: 100% 50%;
    }
    100%{
        background-position: 0 50%;
    }
  }

  /* @media screen and (max-width: 748px) {
    .bar-container{
        width: 90%;
    }
    
  } */