* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: black;
  font-family: 'Righteous', cursive;
}

.content {
  background: #fff;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 20px;
}

.grid-item {
  display: block;
  width: 20%;
  height: 20vw;
  padding: 1px;
  position: relative;
  margin: auto;
}

.grid-item--width2 {
  width: 40%;
  height: 40vw;
}

.primary-grid {
  display: flex;
  flex-direction: column;
  font-size: 16px;
}

.large-icon {
  height: 65%;
}

.large-icon img {
  width: auto;
  height: 100%;
}

.priamry-total {
      font-size: 50px;
}

.terms {
  display: flex;
  gap: 10px;
  text-transform: uppercase;
  font-size: 21px;
}

.terms a {
  color: #dc4129;
}

.icon {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  height: 30px;
  top: 15px;
  left: 15px;
}

.icon span {
font-size: 10px;
    padding-left: 10px;
    font-weight: bold;
    letter-spacing: 1.5px;
    color: #111;
}

.icon img {
  width: 25px;
}

.name {
    position: absolute;
    bottom: 15px;
    left: 15px;
    text-align: left;
    font-size: 30px;
    letter-spacing: 1px;
    max-width: 150px;
    color: #dc4129;
    line-height: 30px;
}

.legal {
  background: white;
  padding: 20px;
  max-width: 800px;
  margin: auto;
}

.legal a {
  color: #dc4129;
}

@media only screen and (max-width: 1200px) {
  .grid-item {
    width: 25%;
    height: 25vw;
  }

  .grid-item--width2 {
    width: 50%;
    height: 50vw;
  }
}

@media only screen and (max-width: 800px) {
  .grid-item {
    width: 100%;
    height: 30vh;
  }

  .grid-item--width2 {
    width: 100%;
    height: 50vh;
  }

}