body {
    background-color: #ffffff;
    margin: 0;
    /* display: grid; */
    height: 100vh;
    position: relative;
    color: #1c1a20;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  }
  
  header {
    background-color: transparent;
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
  }
  
  header img {
    max-width: 230px;
    max-height: 95px;
    width: auto;
    height: auto;
  }
  
  main {
    display: grid;
    grid-template-columns: 40% 60%;
    grid-template-rows: auto;
    position: relative;
    height: 100%;
  }
  
  .first {
    background-color: #facf73;
  }
  
  .second {
    background-color: #1c1a20;
    padding-left: 300px;
    padding-top: 250px;
    color: #ffffff;
  }
  
  .portrait {
    max-width: 500px;
    max-height: 600px;
    width: 450px;
    height: 550px;
    position: absolute;
    top: 60px;
    left: 350px;
    right: 0;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  }
  
  button {
    border-radius: 30px;
    padding: 20px 40px;
    margin-top: 20px;
    cursor: pointer;
  }
  
  .portfolio {
    background-color: #facf73;
    color: white;
    border: none;
    margin-right: 40px;
    font-weight: bold;
  }
  
  .portfolio:hover {
    background-color: #ffffff;
    color: black;
    border: 2px solid black;
  }
  
  .resume {
    background-color: #ffffff;
    color: black;
    border-color: #1c1a20;
    font-weight: bold;
  }
  
  .resume:hover {
    background-color: #facf73;
    color: white;
    border: none;
  }
  
  footer {
    position: absolute;
    bottom: 100px;
    left: 40px;
    right: 0;
    z-index: 1;
    color: #1c1a20;
    font-weight: bold;
    width: 50%;
  }
  
  dl {
    margin: 0;
    padding: 0;
  }
  
  dt {
    font-weight: bold;
    padding-bottom: 10px;
  }
  
  dd {
    margin: 0;
    padding: 0;
    padding-bottom: 30px;
  }
  
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 40px 40px;
    grid-template-rows: auto;
  }
  
  li {
    padding-right: 20px;
  }
  
  ul li a i {
    font-size: 30px;
    color: #1c1a20;
  }