* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: FFFCF8;
  }

  .logo {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 32px;
    text-transform: uppercase;
    color: black;
  }

  li, a {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 31.99px;
    color: black;
    text-decoration: none;
    text-transform: uppercase;
  }

  header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 24px
  }

  .navlinks {
    list-style: none;
  }

  .navlinks li {
    display: inline-block;
    padding: 20px 20px;
  }

  .navlinks li a {
    transition: all .03s ease 0s;
  }

  .navlinks li a:hover {
    font-weight: 700;
  }

  .herocontainer {
    background-color: aqua;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }

  .heroleftside {
    font-family: "Inter", sans-serif;
    align-items: center;
    font-size: 75.78px;
    font-weight: 700;
    align-self: center;
  }

  .herotext {
    font-family: "Inter", sans-serif;
    font-size: 31.99px;
  }

  .profilepicture {
    grid-row-start: 1;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
    
  }

  .profilepicture img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .herotext {
    font-weight: 500;
    font-size: 65px;
    flex-grow: 1;
    inline-size: 800px;
  }

  .project1container {
    padding: 20px;
    background-image: url(images/Background-01-01.png);
    background-repeat: repeat-x;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .thumbnail {
    width: 50%;
  }

  .project1description {
    height: auto;
    width: 65%;
    background-color: rgba(189, 230, 245, 0.8);
    border-radius: 24px;
    padding: 24px;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    line-height: 1.5;
  }

  .project1btn {
    background-color: black;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    padding: 16px 86px;
    color: white;
    border-radius: 16px;
  }
