body{
  padding: 1%;
  font-family: Arial;
}
.logo{
  color:#DD132E;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size:2em;
  font-stretch: condensed;
  font-weight: 650;
  letter-spacing: -1px;
}
.logo .skip{
  font-weight: 1000;
  letter-spacing: -3px;
}
.logo .small{
  margin-left: 2px;
  letter-spacing: -2px;
  font-size:55%; 
}
.top{
  font-size:35%; 
  translate: 6em -232%;
}

/* Customize the label (the container) */
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #30b300;
}
.container input:indeterminate  ~ .checkmark {
  background-color: #f4a61f;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 650px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 650px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .grid {
        display: grid;
        gap: 2px;
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media only screen and (min-width: 1100px) {
    .grid {
        grid-template-columns: repeat(5, 1fr);
    }
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1300px) {
    .grid {
        grid-template-columns: repeat(6, 1fr);
    }
}
.grid{
    display: grid;
    gap: 5px;
}

div > div {
  padding: 12px;
  background-color: #fff5eb;
}
strong a {
  color: #DD132E;
  text-decoration: none;
  line-height:2;
}