#footer {
    margin-top: 200px;
    background-color: #0abcf9;
    background-image: radial-gradient(
      circle farthest-corner at 10% 20%,
      rgba(255, 209, 67, 1) 0%,
      rgba(255, 145, 83, 1) 90%
    );
    color: white;
    padding-bottom: 20px;
  }
  
  .footer_content {
    padding-top: 120px;
    padding-right: 90px;
    padding-left: 90px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .footer_links ul li {
    list-style: none;
  }
  .footer_links a {
    text-decoration: none;
    color: #f8f8f8;
  }
  .footer_linkList {
    display: flex;
    margin-top: 15px;
  }
  
  .footer_linkList li {
    margin-right: 10px;
  }
  .footer_social_ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
  }
  .footer_social_ul li {
    list-style: none;
    font-size: 30px;
    color: white;
  }
  .footer_social_ul i {
    color: white;
    transition: all 0.5s;
  }
  .footer_social_ul i:hover {
    transform: scale(1.3);
    color: #0abcf9;
  }
  
  .footer_header {
    position: absolute;
    width: 80%;
    height: 100px;
    border-radius: 3px;
    background-image: radial-gradient(
      circle farthest-corner at 10% 20%,
      rgba(97, 186, 255, 1) 0%,
      rgba(166, 239, 253, 1) 90.1%
    );
    position: absolute;
    left: 10%;
    /* top: 50%; */
    transition: all 0.5s;
    transform: scale(0.97, 0.97) translateY(-50px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 40px;
  }
  .footer_header h1 {
    font-size: 30px;
  }
  .footer_header a {
    text-decoration: none;
    background: radial-gradient(
      circle farthest-corner at 10% 20%,
      rgba(255, 209, 67, 1) 0%,
      rgba(255, 145, 83, 1) 90%
    );
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    color: white;
    font-size: 20px;
  
    transition: all 250ms;
  }
  .footer_header a:hover {
    transform: scale(0.8);
  }
  .footer_header:hover {
    transform: translateY(-48px) scale(1, 1);
  }
  
  .sub-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 60px;
  }
  .rights span {
    font-weight: bold;
  }
  .credits span {
    color: burlywood;
  }
  @media (max-width: 898px) {
  .footer_content {
      flex-direction: column;
      padding: 80px 0px 10px 30px;
    }
    .footer_links {
      margin-top: 10px;
    }
    .footer_links h1 {
      font-size: 20px;
    }
    .footer_social {
      margin-top: 10px;
    }
    .footer_social h1 {
      font-size: 20px;
    }
    .footer_header {
      padding: 0px 20px;
      height: 80px;
    }
    .footer_header h1 {
      font-size: 20px;
    }
    .footer_header a {
      font-size: 10px;
      flex: 1;
      width: 20%;
      margin-left: 20px;
      padding: 5px 10px;
      text-align: center;
    }
    .footer_social_ul li a {
      margin-right: 20px;
    }
    .sub-footer {
      margin-top: 20px;
      flex-direction: column;
      align-items: center;
      text-align: center;
      justify-content: center;
    }
    .footer_linkList {
      margin-top: 7px;
    }
  }