body {
    /* height: 100vh; */
    margin: 0;
  /*   overflow: hidden; */
    font-family: Roboto, sans-serif;
    display: flex;
    flex-direction: column;
  }
  .header, .footer {
    display: flex;
    background-color: #1f2937;
  }
  img.logo {
    width: 100px;
    height: 100px;
    align-self: center;
  }
  .header{
    flex-direction: column;
    justify-content: space-between;
    padding: 100px;
    padding-top: 10px;
  }
  .head-content {
    display: flex;
    gap: 10px;
    flex: 1;
  }
  .hero {
    font: 800 48px sans-serif;
    color: #F9FAF8;
  }
  .head-content .text {
    font-size: 18px;
    color: #E5E7EB;
    margin-bottom: 5px;
  }
  .header-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
  }
   ul {
    display: flex;
    gap: 16px;
    list-style: none;
   }
   a {
    text-decoration: none;
    color: rgb(208, 207, 207);
  }
  img.main {
    width: 100%;
    max-width: 800px;
    max-height: 300px;
    height: auto;
  }
  button {
    background-color: #3882F6;
    border: none;
    border-radius: 8px;
    color: white;
    padding: 8px 20px;
    font-weight: 600;
    cursor: pointer;
  }
  .main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 20px;
  }
  .title {
    font: 800 36px sans-serif;
    color: #1F2937;
    align-self: center;
  }
  .middle-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 50px 100px;
    flex-wrap: wrap;
  }
  .pair {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 0px;
  }
  .pair .text {
    color: rgb(154, 153, 153);
    font-size: 18px;
    margin-bottom: 5px;
  }
  img.icon {
    width: 100px;
    height: 100px;
  }
  .quote {
    display: flex;
    flex-direction: column;
    background-color: #E5E7EB;
    font: 300 36px sans-serif;
    font-style: italic;
    color: #1f2937;
    align-items: flex-end;
    padding: 100px;
  }
  .author {
    margin-right: 80px;
    font: 800 25px Serif;
  }
  .modal {
    background: #3882F6;
    width: 500px;
    border-radius: 10px;
    color: #E5E7EB;
    box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 16px;
    padding: 40px;
    align-self: center;
    margin: 40px;
  }
  .modal-content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    flex-shrink: 1;
  }
  .modal-head {
    font: 800 25px sans-serif;
  }
  .modal-button{
    width: 100px;
    height: 30px;
    align-self: center;
    cursor: pointer;
    border: 1px solid white;
  }
  .footer {
    justify-content: center;
    color: white;
    padding: 20px;
  }

