* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    padding: 5px;
    background-color: #3a3a3a;
  }
  .header {
    background-color: #252525;
    width: 100%;
  }
  .header img {
    width: 95%;
  }
  .main {
    background-color: #252525;
    width: 100%;
    margin-top: 5px;
  }
  .main section {
    text-align: center;
  }
  
  .main section img {
    width: 85%;
  }
  .intro {
      text-align: center;
      width: 82%;
      margin: auto;
      color: orangered;
      font-family: "Roboto Mono", monospace;
      background-color: #202020;
  }
  .content {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    justify-content: center;
  }
  .box-item {
    width: 45%;
    margin: 5px;
    padding: 5px;
    background-color: #161616;
    display: flex;
    justify-content: space-between;
  }
  .box-item-img {
    float: left;
    width: 205px;
    padding-right: 5px;
  }
  .box-item-img img {
    width: 200px;
  }
  .box-item-text {
    float: none;
    padding: 5px;
    color: white;
    font-family: "Roboto Mono", monospace;
  }
  .box-item span {
    font-size: 50px;
    display: block;
  }
  .box-item h2 {
    font-size: 23px;
    font-style: italic;
    display: block;
    float: none;
  }
  .box-item p {
    display: inline;
    float: none;
  }
  
  @media (max-width: 576px) {
    .content {
      width: 100%;
    }
    .box-item {
      width: 95%;
      margin-bottom: 10px;
      margin-top: 10px;
  
      height: auto;
    }
    .box-item-img {
      width: 105px;
      padding-right: 5px;
    }
    .box-item-img img {
      width: 100px;
    }
    .box-item-text span {
      font-size: 25px;
    }
    .box-item h2 {
      font-size: 17px;
    }
    .box-item p {
      font-size: 14px;
    }
  }
  footer {
    background-color: #252525;
    width: 100%;
    margin-top: 5px;
    font-family: "Roboto Mono", monospace;
  }
  footer section {
    text-align: center;
  }
  footer section img {
    width: 70%;
  }
  footer div {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .insta {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 40px;
  }
  .insta a {
    color: white;
    text-decoration: none;
  }
  .discord {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 40px;
  }
  
  .yt {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 40px;
  }
  .yt a {
    color: white;
    text-decoration: none;
  }
  
  footer div {
      padding: 15px;
  }
  
  footer div img {
    width: 50px;
  }
  @media (max-width: 576px) {
    footer div {
      flex-direction: column;
    }
    .insta {
      flex-direction: column;
    }
    .discord {
      flex-direction: column;
    }
    .yt {
      flex-direction: column;
    }
  }
  
