body {
    font-family: 'Satoshi', sans-serif;
    background: #f5f3fa;
    margin: 0;
    color: #0f0d17;
  }
  
  a {
    text-decoration: none;
    color: #0f0d17;
  }
  
  header {
    background: #685dc0;
    height: 15vh;
    display: grid;
    align-items: center;
    grid-template-columns: auto auto;
    padding: 0 100px;
    position: sticky;
    top: 0;
    z-index: 9;
  }
  
  .content {
    padding: 0 100px;
  }
  
  header p:first-child {
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  header p:first-child:hover {
    opacity: 100%;
  }
  
  header form {
    margin-right: 0;
    margin-left: auto;
  }
  
  input,
  select {
    border-radius: 999px;
    font-family: 'Satoshi', sans-serif;
    background: #dbd9f0;
    color: #0f0d17;
    border: none;
    font-size: 18px;
    padding: 10px 20px;
    outline: 1px #dbd9f0 solid;
  }
  
  select {
    background: #e2e1ee;
    background-image: url('/Assets/dropdown.svg');
    background-repeat: no-repeat;
    background-position: right 10px center;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    max-width: 300px;
    margin-right: 15px;
    outline: #dbd9f0;
  }
  
  /* #filter select:nth-child(2) {
    margin-top: 20px;
  } */
  
  #form input {
    border-radius: 999px;
    font-family: 'Satoshi', sans-serif;
    background: #e2e1ee;
    margin-top: 15px;
    display: block;
    width: 100%;
    max-width: 500px;
    color: #0f0d17;
    border: none;
    font-size: 18px;
    padding: 10px 20px;
  }
  
  .primary {
    padding: 10px 30px;
    font-size: 18px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    border-radius: 999px;
    background: #685dc0;
    border: none;
    color: white;
    margin-top: 20px;
    transition: 0.3s;
    cursor: pointer;
    display: block;
  }
  
  .primary:hover {
    transform: scale(1.03);
    background: #8b7fe2;
  }
  
  header form button {
    height: 100%;
    width: 44.5px;
    border-radius: 999px;
    background: none;
    border: none;
    margin-left: calc(-44.5px - 5px);
  }
  
  header form button img {
    transform: translateY(4px);
    opacity: 70%;
    transition: 0.3s;
    cursor: pointer;
  }
  
  header form button img:hover {
    transform: translateY(4px);
    opacity: 100%;
  }
  
  h1 {
    font-weight: 450;
    font-size: 46px;
    line-height: 120%;
    margin: 0;
  }
  
  h2 {
    font-weight: 450;
    font-size: 28px;
    line-height: 120%;
    margin: 0;
  }
  
  p {
    font-size: 18px;
    line-height: 120%;
    font-weight: 400;
    opacity: 80%;
    margin: 0;
    margin-top: 20px;
  }
  
  .cards {
    display: grid;
    grid-template-columns: max-content max-content max-content;
    gap: 20px;
    margin-top: 30px;
  }
  
  .cards .card {
    padding: 25px;
    background: #e2e1ee;
    border-radius: 20px;
    display: grid;
    grid-template-columns: auto auto 100%;
    align-items: center;
    transition: 0.3s;
    cursor: pointer;
  }
  
  .card:hover {
    background: #dbd9f0;
    border-radius: 20px;
    transform: scale(1.03);
  }
  
  .cards .card p {
    margin: 0;
    font-size: 28px;
    margin-right: 10px;
  }
  
  .cards .card .tld {
    padding: 5px 15px;
    background: #ecebf6;
    border-radius: 10px;
    margin: 0;
    font-size: 28px;
  }
  
  .highlight {
    font-weight: 500;
    text-decoration: underline wavy #e2e1ee 5px;
  }
  
  form .error-message {
    margin: 0;
    margin-top: 7px;
    padding: 10px 20px;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    display: inline-block;
    font-size: 16px;
    color: white;
    background-color: #cd437a;
    animation: fadein 0.5s ease 0s 1 normal forwards;
  }
  
  form .error-message:before {
    content: '##';
    color: transparent;
    background-image: url('/Assets/up.svg');
    background-repeat: no-repeat;
    background-size: cover;
    width: 10px;
    height: 10px;
    margin-right: 10px;
  }
  
  form .success-message {
    margin: 0;
    margin-top: 15px;
    padding: 10px 20px;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    display: inline-block;
    font-size: 16px;
    background-color: #36beb3;
    color: white;
    animation: fadein 0.5s ease 0s 1 normal forwards;
  }
  
  form .success-message:before {
    content: '##';
    color: transparent;
    background-image: url('/Assets/tick.svg');
    background-repeat: no-repeat;
    background-size: cover;
    width: 10px;
    height: 10px;
    margin-right: 10px;
  }
  
  @keyframes fadein {
    0% {
      opacity: 0;
      transform: translateY(5px);
    }
  
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  footer {
    margin-top: 60px;
  }
  
  footer a {
    color: #0f0d17;
    opacity: 30%;
    text-decoration: none;
    font-size: 8px;
    padding: 10px;
    padding-right: 0;
    transition: 0.3s;
  }
  
  footer a:hover {
    opacity: 80%;
  }
  
  #tld-list .tld {
    padding: 10px 30px;
    background: #e2e1ee;
    border-radius: 20px;
    margin: 0;
    font-size: 36px;
    display: inline-block;
    margin-right: 15px;
    margin-top: 7.5px;
    margin-bottom: 7.5px;
    transition: 0.3s;
    cursor: pointer;
  }
  
  #tld-list .tld:hover {
    background: #dbd9f0;
    border-radius: 20px;
    transform: scale(1.03);
  }
  
  #intro {
    padding: 120px 0;
  }
  
  #domain-list,
  #frequently-viewed,
  #form,
  #filter {
    padding: 60px 0;
    border-top: #e2e1ee 5px dotted;
  }
  
  #form form {
    margin-top: 30px;
  }
  
  #tld-list {
    padding: 60px 0;
    border-top: #e2e1ee 5px dotted;
  }
  
  .no-margin {
    margin: 0 !important;
  }
  
  .ad-1 {
    margin-top: 20px;
  }
  
  .ad-2 {
    margin-top: 20px;
    display: none;
  }
  
  /* Responsive design  */
  
  @media only screen and (max-width: 1100px) {
    .cards {
      grid-template-columns: max-content max-content;
    }
  
    .ad-1 {
      margin-top: 20px;
      display: none;
    }
  
    .ad-2 {
      margin-top: 20px;
      display: block;
    }
  }
  
  @media only screen and (max-width: 800px) {
    body {
      zoom: 0.9;
    }
  
    header p:first-child {
      text-align: center;
    }
  
    .content {
      padding: 0 30px;
    }
  
    header {
      grid-template-columns: 100%;
    }
  
    header form {
      margin-left: auto;
      margin-right: auto;
    }
  
    header p:first-child {
      margin-left: auto;
      margin-right: auto;
      margin-bottom: -40px;
    }
  
    #form input {
      width: calc(100% - 45px);
    }
  
    #form .error-message {
      width: calc(100% - 45px);
    }
  
    #form .success-message {
      width: calc(100% - 45px);
    }
  
    .cards {
      grid-template-columns: max-content;
    }
  }
  
  #filter select:nth-child(2) {
    margin-top: 10px;
  }
  
  #filter select:nth-child(1) {
    margin-bottom: 10px;
  }