  /*
    CSS Reset
  */

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  * {
    margin: 0;
  }

  html,
  body {
    height: 100%;
  }

  body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    background-color: var(--background);
    font-family: 'Roboto', sans-serif;
  }


  img,
  picture,
  video,
  canvas,
  svg {
    display: block;
    max-width: 100%;
  }

  input,
  button,
  textarea,
  select {
    font: inherit;
  }

  button {

    background-color: var(--quote);
    border: none;
    border-radius: 4px;
    color: white
  }

  button:hover {
    cursor: pointer;
    background-color: rgba(242, 120, 161, .8);
  }

  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    overflow-wrap: break-word;
  }

  h2 {
    margin: 1em 0;
  }

  #root,
  #__next {
    isolation: isolate;
  }


  :root {
    --background: rgb(247, 247, 247);

    --header: rgb(51, 171, 161);
    --quote: rgb(242, 120, 161);

  }

  /*
    Header
  */

  header {
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--header);
    color: white
  }

  header ul {
    display: flex;
    gap: 1em;
  }

  ul {
    list-style: none;

  }

  section ul {
    padding: 0;
    list-style: none;
  }

  section li {

    margin-bottom: 1em;
  }


  section li::before {

    content: "\2022";
    /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: rgba(242, 120, 161);
    /* Change the color */
    font-weight: bold;
    /* If you want it to be bold */
    display: inline-block;
    /* Needed to add space between the bullet and the text */
    width: 1em;
    /* Also needed for space (tweak if needed) */
    margin-left: -1em;
    /* Also needed for space (tweak if needed) */


  }

  /*
    Signs section
  */


  .mobileheader {
    display: none;
  }


  .quote {

    padding: 1em;
    font-size: 2em;
    color: white;
    text-align: center;
    background-color: var(--quote);
  }


  .signs {

    width: 80%;
    margin: 0 auto;
  }

  h1 {
    text-align: center;
    margin: 1em 0;
  }

  .signs p {

    text-align: center;
  }

  .sign div:last-of-type p {
    text-align: justify;
  }

  .row {

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;

  }

  .row div {
    flex-basis: 15%;
    max-width: 10em;
  }

  .row div p:first-of-type {

    font-weight: 600;
  }


  footer {
    padding: 1em;
    display: flex;
    background-color: var(--header);
    gap: 1em;

  }


  footer a {
    text-decoration: none;
    color: white;

  }

  .desktopheader {

    display: flex;
    align-items: center;
  }

  .desktopheader p:hover {
    cursor: pointer;

  }

  .hovermenu {
    display: none;
  }

  .desktopheader li:hover .hovermenu {
    display: block;
    position: absolute;
    background-color: var(--header);
    border-radius: 2px;
    padding: .5em;
  }

  a {

    text-decoration: none;
    color: inherit;

  }

  .desktopheader a:hover {
    opacity: 0.5;
  }

  .hovermenu ul {
    display: block;
    padding: 0;
  }

  .recommendations {

    display: flex;
    justify-content: center;
    flex-wrap: wrap;

  }

  .recommendation {
    padding: 1em;
    flex-basis: 30%;
    
  }

  .recommendation:hover {
    opacity: .7;
  }

  .recommendation p {
    text-align: center;
    font-weight: 700;
  }

  .recommendation img {
    aspect-ratio: 3 / 2;
    border-radius: 8px;
  }



  .hamburger-menu {
    display: none;
  }

  .ajanlo img {
    aspect-ratio: 3 / 2;
  }



  @media (max-width: 1000px) {
    .desktopheader {
      display: none;
    }

    .mobileheader {
      display: block;

    }

    .hamburger-menu {
      position: absolute;
      width: 100%;
      color: white;
      text-align: center;
      display: none;
      flex-direction: column;
      background-color: var(--header);
      padding: 0;
      top: 48px;
      line-height: 2em;
      z-index: 999;
    }

    .hamburger-menu ul {
      padding: 0;
    }

    .row div {
      flex-basis: 40%;

    }

    .hamburger-menu li {

      background-color: var(--header);
    }

    .hamburger-menu p,
    .maincat {
      font-weight: 700;

    }

    .hovermenu {
      display: block;
    }

    .recommendations {

      flex-direction: column;
    }




  }

  @media (min-width: 500px) and (max-width: 1000px) {

    .recommendations {
      flex-direction: row;
    }

    .recommendation {
      flex-basis: 40%;
    }

  
  }