body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
  }
  
  section {
    background-color: white;
  }
  
  .hero {
    background-color: #e38bb3;
    height: 100vh;
    color: white;
    font-size: 40px;
  }
  
  nav {
    display: flex;
    justify-content: spcace-between;
    text-align: right;
  }

  nav h6{
    margin-top: 2rem;
    margin-left: 2rem;
  }
  
  ul{
    display: flex;
    list-style-type: none;
    width: 500px;
    justify-content: space-around;
    font-size: 30px;
    float: rigt;
  }
  
  li {
    text-decoration: none;
  }
  
  h1 {
    font-size: 90px;
    margin: 0;
  }
  
  h2 {
    font-size: 50px;
    color: black;
  }
  
  p {
    margin: 0;
    font-size: 30px;
    font-weight: 400;
  }
  
  .subtext {
    font-size: 15px;
    font-weight: 400;
  }
  
  .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: #e04f79;
    text-align: center;
    font-size: 30px;
    font-weight: 400px;
    margin-top: 20px;
    padding-top: 5px;
  }
  
  .button:hover {
    background-color: #ef744b;
  }
  
  .button:active {
    background-color: #a9a9a9;
    color: #808080;
  }
  
  .socials {
    padding-bottom: 200px;
  }
  
  .logo{
    height: 80px;
    margin: 30px;
  }
  
  .social {
    margin: 20px;
  }
  
  .sub-section {
    display: flex;
    justify-content: space-around;
    padding: 80px;
    color: black;
  }
  
  .sub-section-alternative {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 80px;
  }
  
  .headshot {
      width: 300px;
      height: 400px;
      border-radius: 50px;
      margin-left: 80px;
  }
  
  .headshot-container {
    display: flex;
    align-items: center;
  }
  
  .project-card {
    width: 300px;
    height: 500px;
    box-shadow: 5px 5px 20px grey;
    color: black;
    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;
    
  }
  
  hr {
    margin-left: 20px;
    margin-right: 20px;;
  }
  
  .project-link {
    text-decoration: none;
    color: #ef744b;
  }
  
  a {
    text-decoration: none;
    color: white;
  }
  
  footer {
    background-color: #e38bb3;
    color: white;
    text-align: center;
    padding: 80px;
  }
  
  .contact {
    color: white;
    font-size: 80px;
  }