* {
    margin: 0;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    list-style: none;
  }
  
  body {
    background-image: linear-gradient(to right, #9DC5BB, #DEE5E5);
  }
  
  /* ---------------NAVBAR--------------- */
  
  nav {
    display: flex;
    padding: 16px 48px;
    justify-content: space-between;
    place-items: center;
    border-bottom: 6px solid #17B890;
  }
  
  nav > div {
    display: flex;
    place-items: center;
  }
  
  nav > div > a {
    font-size: 20px;
    color: #125e4b;
  }
  
  nav > div > img {
    width: 30px;
  }
  
  nav > ul {
    display: flex;
  }
  
  nav > ul > li > a {
    color: #125e4b;
    margin-left: 24px;
    font-size: 18px;
  }

  .logo {
    background-image: url('312.png');
  }
  
  /* ---------------SECTION/HEADER--------------- */
  
  #header {
    padding: 0rem 3rem;
    margin-top: 32px;
    display: flex;
  }
  
  #header > .header-texts {
    width: 60%;
  }
  
  #header > div > h1 {
    font-size: 40px;
    color: #125e4b;
  }
  
  #header > div > h3 {
    line-height: 1.5em;
    font-size: x-large;
    color: #082D0F;
  }
  
  #header > div > p {
    font-size: small;
    color: #125e4b;
    line-height: 1.5em;
  }
  
  abbr {
    /* text-decoration: underline;
    text-decoration-color: #576baa; */
    color: #082D0F;
    border-bottom: 2px solid #665aaa;
  }
  
  /* ---------------CONTENT--------------- */
  
  .content-aside {
    display: flex;
    margin-bottom: 4rem;
  }
  
  .content {
    padding: 0rem 3rem;
    width: 80%;
    color: #082D0F;
  }
  
  .content h2 {
    margin: 40px 0 15px 0;
  }
  
  .content h4 {
    margin: 15px 0;
  }
  
  .content p {
    font-size: small;
    margin: 10px 0;
    line-height: 1.5em;
  }
  
  .content .content-second p {
    text-align: justify;
  }
  
  /* ---------------ASIDE--------------- */
  
  aside {
    padding: 0rem 3rem;
    display: flex;
    flex-direction: column;
    margin-top: 10%;
    justify-content: center;
    border-left: 4px solid #17B890;
  }
  
  aside h2 {
    color: #17B890;
  }
  
  aside ul {
    padding: 15px 0;
  }
  
  aside ul li {
    padding: 5px 0;
    display: flex;
    text-align: left;
  }
  
  aside ul li a {
    color: #082D0F;
    padding-left: 5px;
  }
  
  /* ---------------ARTICLE--------------- */
  table {
    padding: 0rem 3rem;
  }
  
  tr {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  .article {
    overflow: hidden;
    border: 4px solid #17B890;
    border-radius: 2rem;
    background-color: #5E807F;
    text-align: center;
    width: 33%;
    margin-top: 1rem;
  }
  
  .article img {
    width: 95%;
    height: 150px;
    border-radius: 1.5rem;
    margin: 0.5rem;
    background-color: black;
  }
  
  .article h3 {
    color: #9DC5BB;
    margin-top: 20px;
    padding-bottom: 15px;
    font-size: 16px;
  }
  
  .article p {
    color: #9DC5BB;
    line-height: 1.2em;
    font-size: medium;
  }
  
  .article a {
    display: block;
    color: #082D0F;
    background-color: #9DC5BB;
    margin: 15px 25%;
    padding: 15px 30px;
    border-width: 30px 10px;
    border-radius: 20px/10px;
  }
  
  .row-second {
    display: flex;
    align-items: center;
  }
  
  .article-long {
    background-color: #5E807F;
    border-width: 50px 25px;
    border-radius: 50px/25px;
    padding: 18px 16px;
  }
  
  .article-long h3 {
    color: #9DC5BB;
    padding-bottom: 10px;
    border-bottom: 4px solid #17B890;
  }
  
  .article-long p {
    color: #9DC5BB;
    margin: 1rem 0;
  }
  
  .row-second td img {
    width: 180px;
    outline: 4px solid #9DC5BB;
    margin: 5px 3rem;
  }
  
  /* ---------------CREATIVITY--------------- */
  .creativity {
    padding: 3rem 3rem;
  }
  
  .mini-one,
  .mini-two,
  .mini-three,
  .mini-four {
    margin-top: 16px;
    display: flex;
  }
  
  .creativity img {
    width: 120px;
    height: 120px;
    background-color: #082D0F;
    border-radius: 9999px;
    margin-right: 16px;
  }
  
  .mini-content {
    padding: 16px;
    background-color: #5E807F;
    border-bottom-right-radius: 25px 10px;
    border-bottom-left-radius: 25px 10px;
    border-top-right-radius: 25px 10px;
    border-top-left-radius: 25px 10px;
    box-shadow: 15px 20px 2px hsl(0deg 0% 0% / 0.47);
  }
  
  .mini-content h2 {
    color: #9DC5BB;
  }
  
  .mini-content p {
    color: #9DC5BB;
  }
  
  /* ---------------FOOTER--------------- */
  
  footer {
    padding: 20px 0;
    border-top: 6px solid #17B890;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #082D0F;
  }
  
  .footer-logo {
    color: #082D0F;
  }
  
  .footer-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-around;
    border-right: 2px solid #17B890;
    border-left: 2px solid #17B890;
    padding: 10px 16px;
  }
  
  .footer-form button {
    background-color: #9DC5BB;
    color: #17B890;
  }
  
  /* ---------------MEDIA QUERY--------------- */
  
  @media screen and (max-width: 576px) {
    /* NAVBAR */
    nav {
      flex-direction: column;
      padding: 16px 16px;
      gap: 10px;
    }
  
    nav > ul > li > a {
      margin-left: 16px;
    }
  
    nav > ul {
      padding: 0;
    }
  
    /* HEADER */
  
    #header {
      padding: 0 16px;
      flex-direction: column;
    }
  
    #header > .header-texts {
      width: 100%;
    }
  
    /* CONTENT */
  
    .content-aside {
      flex-direction: column;
    }
  
    .content {
      padding: 0 16px;
      width: 100%;
      color: white;
    }
  
    /* ---------------ASIDE--------------- */
  
    aside {
      padding: 0 1rem;
      flex-direction: column;
      text-align: center;
      border: none;
    }
  
    aside ul li {
      text-align: center;
      justify-content: center;
    }
  
    /* ---------------ARTICLE--------------- */
    table {
      padding: 0rem 1rem;
    }
  
    tr {
      display: flex;
      flex-direction: column;
    }
  
    .article {
      margin: 2rem 0;
      width: 100%;
    }
  
    .row-second {
      flex-direction: column-reverse;
    }
  
    .row-second td img {
      margin: 5px 1rem;
    }
  
    /* ---------------CREATIVITY--------------- */
    .creativity {
      padding: 1rem 1rem;
    }
  
    .mini-one,
    .mini-two,
    .mini-three,
    .mini-four {
      gap: 0.5rem;
      margin: 2rem 0;
      flex-direction: column;
      align-items: center;
    }

    .mini-one img {
      content: url(https://i.ibb.co/ZXkXxjk/k1.jpg);
    }
    
    .creativity img {
      margin: 0;
    }
  
    /* ---------------FOOTER--------------- */
  
    footer {
      padding: 1rem 1rem;
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
  
    .footer-form {
      text-align: left;
      border: none;
      border-top: 2px solid #a6d5e7;
      border-bottom: 2px solid #bbd8e4;
      padding: 10px 16px;
    }
  }
  
  @media (min-width: 576px) and (max-width: 850px) {
    table {
      padding: 0rem 1rem;
    }
  
    tr {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .article {
      width: 50%;
      margin-top: 5rem;
    }
  
    .row-second {
      flex-direction: column-reverse;
    }
  
    footer {
      padding: 20px 20px;
      justify-content: space-between;
  }
  }