/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
  }
  /*
  /*
    3. Allow percentage-based heights in the application
  */
  html, body {
    height: 100%;
  }
  /*
    Typographic tweaks!
    4. Add accessible line-height
    5. Improve text rendering
  */
  body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-size: 15px;
    display: grid;
    place-content: center;
    background-color: hsl(233, 47%, 7%);
    height: 100vh;
  }
  /*
    6. Improve media defaults
  */
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
  }
  /*
    7. Remove built-in form typography styles
  */
  input, button, textarea, select {
    font: inherit;
  }
  /*
    8. Avoid text overflows
  */
  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }
  /*
    9. Create a root stacking context
  */
  #root, #__next {
    isolation: isolate;
  }

  .card {
    width: 60rem;
    height: 400px;
    border-radius: 0.5rem;


    background-color: hsl(244, 38%, 16%);
  }
  
  

 
  .title {
    color: white;
    margin-top: 3.5rem;
    padding: 0px 34rem 6px 4.5rem;
    line-height: 1.1;

    font-family: "Inter", sans-serif;
    font-weight: 700;
  }

  .purple {
    color: hsl(277, 64%, 61%);
  }

  .info {
    font-family: "Inter", sans-serif;
    color: hsla(0, 0%, 100%, 0.45);
    padding: 20px 32rem 6px 4.4rem;
  }


  .main-img {
    background-image: url('images/image-header-desktop.jpg');
    background-repeat: no-repeat;
    position: relative;
    bottom: 55px;
    float: right;
    width: 480px;
    height: 399px;

    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  .stats ul {
    display: flex;
    flex-direction: row;
  }

  .stats li {
    color: hsl(0, 0%, 100%);
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 700;
    list-style-type: none;
    padding: 58px 0px 10px 30px;
  }

  .stats span {
    color: hsla(0, 0%, 100%, 0.5);
    font-family: "Lexend Deca", sans-serif;
    margin-top: 5.6rem;
    text-transform: uppercase;
    font-size: 11px;
  }

  .Companies {
    position: relative;
    right: 3rem;
  }

  .Templates {
    position: relative;
    right: 2.4rem;
  }

  .Queries {
    position: relative;
    right: 3.4rem;
  }