/* Colors */
/* 
Base color #339AF0 
background color #f0f8fe
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f0f8fe;
  color: #094474;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
}

html {
  font-size: 62.5%;
}

h1 {
  font-size: 7.4rem;
  letter-spacing: -2px;
}

h2 {
  font-size: 4.4rem;
}

p {
  font-size: 2.4rem;
  line-height: 1.8;
}

.list-head {
  font-size: 2.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}

.heading-col {
  padding: 8rem 0rem 8rem 8rem;
  position: relative;
}

.new-tag {
  position: absolute;
  top: 5rem;
  left: 3rem;
  font-size: 3rem;
  background-color: #e03131;
  padding: 1.6rem 3.2rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5rem;
  border-radius: 0.5rem;
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.242);
}

.info-col {
  padding: 8rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  list-style: none;
  font-size: 2.4rem;
}

@media (max-width: 800px) {
  body {
    grid-template-columns: 1fr;
  }

  .new-tag {
    left: 1.5rem;
  }

  h1 {
    padding-top: 15rem;
  }

  .heading-col {
    padding: 4rem;
  }
}
