
   body {
     
  font-family: Georgia, serif;
  background: linear-gradient(to bottom, #403e38, #23221e);
  color: #3d5357;
  margin: 0;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center; 
  min-height: 100vh;
  box-sizing: border-box;
  
  
  border: 20px solid #1c1b19;
}
    .container {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      gap: 40px;
      max-width: 1500px;
      width: 100%;
      box-sizing: border-box;
    }

    .dialogue {
      flex: 0 0 600px;
      color: #ffffff;
      font-style: italic;
      font-size: 1.1em;
      background: #111110;
      border-left: 5px solid #3d5357;
      padding: 15px 20px;
      box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
      box-sizing: border-box;
      height: fit-content;
    }

    .dialogue-buttons button {
      background-color: #3d5357;
      color: #fff;
      border: none;
      padding: 8px 16px;
      font-family: Georgia, serif;
      font-size: 1em;
      border-radius: 4px;
      cursor: pointer;
      margin-right: 10px;
      margin-top: 10px;
    }

    a {
      color: #66777a;
    }

    .card {
      flex: 0 0 750px;
      transform: rotate(-5deg);
      transform-origin: center center;
      border: 10px double #3d5357;
      padding: 20px;
      background-color: #6c8e93;
      box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
      box-sizing: border-box;
      height: fit-content;
    }

    .card-inner {
      border: 5px solid #3d5357;
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      background-color: #80abb2;
    }

    .top-section {
      display: flex;
      gap: 20px;
    }

    .photo {
      width: 150px;
      height: 150px;
      background-color: #8a96aa;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 3px solid #3d5357;
      color: #1e1e1e;
      font-weight: bold;
    }

    .identity {
      flex: 1;
      border: 2px solid #3d5357;
      padding: 10px;
      background-color: #94aaae;
    }

    .info-section {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .status-box,
    .contact-box {
      border: 2px solid #3d5357;
      padding: 10px;
      flex: 1;
      background-color: #94aaae;
    }

    .contact-box {
      max-width: 200px;
    }

    .contact-box a {
      display: block;
      margin-bottom: 5px;
    }

    .footer-note {
      font-size: 12px;
      color: #66777a;
      text-align: right;
      padding-top: 10px;
    }
    
    @media (max-width: 768px) {
  body {
    padding: 20px;
    border-width: 10px;
    flex-direction: column;
  }

  .container {
    flex-direction: column;
    gap: 20px;
  }

  .dialogue,
  .card {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
  }

  .top-section {
    flex-direction: column;
    align-items: stretch;
  }

  .photo {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .identity,
  .status-box,
  .contact-box {
    width: 100%;
  }

  .contact-box {
    max-width: none;
  }

  .card {
    transform: none;
    <!---had to remove the tilty thing so its more seen :sob:---!>
  }
}
