@import 'https://cdn.iconmonstr.com/1.3.0/css/iconmonstr-iconic-font.min.css';
*,
*:after,
*:before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 3px;
}
@media only screen and (min-width: 400px) and (max-width: 1050px) {
  body {
    letter-spacing: 2px;
  }
}
@media only screen and (max-width: 400px) {
  body {
    letter-spacing: 1px;
    font-size: 14px;
  }
}
img {
  max-width: 90%;
}
header {
  background: #000;
  padding-top: 3em;
  padding-bottom: 3em;
  text-align: center;
  width: 100%;
}
header img {
  padding: 1em;
}
header h1 {
  color: #ffd800;
  font-size: 1.5em;
  text-transform: uppercase;
  margin-top: 1em;
  padding: 0 2em;
}
section {
  background-color: #ffd800;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 100px;
}
@media only screen and (max-width: 400px) {
  section {
    grid-template-columns: repeat(1, 1fr);
  }
}
section .box1 {
  grid-column-start: 1;
  grid-column-end: 1;
  grid-row-start: 1;
  grid-row-end: 1;
  padding-top: 35px;
  text-align: center;
}
section .box1 a {
  color: #000;
  margin: 5px;
  text-decoration: none;
}
section .box1 a:hover {
  color: #fff;
}
section .box1 a i {
  font-size: 32px;
}
@media only screen and (min-width: 400px) and (max-width: 1050px) {
  section .box1 {
    grid-column-start: 1;
    padding: 20px;
  }
}
section .box2 {
  grid-column-start: 2;
  grid-row-start: 1;
  grid-row-end: 1;
  line-height: 29px;
  padding-top: 20px;
  text-align: center;
}
section .box2 a {
  color: #000;
  margin: 5px;
  text-decoration: none;
}
section .box2 a:hover {
  color: #fff;
}
@media only screen and (max-width: 400px) {
  section .box2 {
    grid-column-start: 1;
    grid-row-start: 2;
    grid-row-end: 2;
  }
}
@media only screen and (min-width: 400px) and (max-width: 1050px) {
  section .box2 {
    grid-column-start: 2;
    grid-row-start: 1;
    grid-row-end: 1;
  }
}
section .box3 {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 7;
  padding-top: 50px;
  text-align: center;
}
@media only screen and (max-width: 400px) {
  section .box3 {
    grid-column-start: 1;
    grid-row-start: 3;
    grid-row-end: 5;
  }
}
@media only screen and (min-width: 400px) and (max-width: 1050px) {
  section .box3 {
    grid-row-start: 2;
    grid-row-end: 5;
  }
}
