.container {
  width: 85%;
}

.rounded > img {
  border-radius: 15px;
  box-shadow: 0px 0px 25px #000;
  margin: 10px;
}

.game-img {
  text-align: center;
  vertical-align: middle;
}

.logo {
    color: #ac4729 !important;
}

.banner {
    background-position-x: -200px;
    background-size:cover;
    background-repeat: no-repeat;
    background-color: #0B151B;
    background-image: url("/static/assets/images/DBFZ_android21-2.png");
    height: 600px;
    position:relative;
}

.slogan {
    position: absolute;
    width: 800px;
    max-width: 95vw;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    padding: 48px;
    color: white;
    margin-top: 0;
    text-shadow: 0 0 5px #000;
    box-sizing: border-box;
}

.slogan .title {
    font-size: 34px;
}

.slogan .subtitle {
    font-size: 18px;
}

.ad-buttons {
    display: flex;
    gap: 16px; 
    justify-content: center;
}

.invite {
  border-radius: 5px;
  margin: 25px auto 25px auto;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  padding: 15px 0;
  display: inline-block;
  height: 47px;
  width: 180px; 
  color: #ccc;
  background-color: #023450; 
  border: 1px solid #0076b3;
  cursor: pointer;
  transition: .5s;
}

.invite.secondary {
    color: #fff;
    background-color: #7e0807;
    border: 1px solid #ff1801;
}

.invite:hover {
  color: #fff;
  background-color: #7e0807;
  border: 1px solid #ff1801;
}

.invite.secondary:hover {
    color: #fff;
    background-color: #023450; 
    border: 1px solid #0076b3;
}

div.about > div > div > img {
    height: 35px;
}

.about-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.a21-row-padding {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.a21-row-padding img {
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  transition:.5s;
  margin-bottom: 12px;
}

.a21-row-padding img:hover {
    transition:.5s;
    border-radius: 10px;
}

.a21-row {
    padding-top: 5px;
    padding-bottom: 5px;
    transition:.5s;
    border-radius: 10px;
    text-align: center;
}

.a21-row.row-1 {
    color: #fff;
    background-color: #7e0807;
}
.a21-row.row-1:hover {
    color: #ccc;
    background-color: #023450;
}

.a21-row.row-2 {
    color: #ccc;
    background-color: #023450;
}

.a21-row.row-2:hover {
    color: #fff;
    background-color: #7e0807;
}

.a21-col-2, .a21-col-3 {
    cursor: default;
}

.a21-col-2:hover, .a21-col-3:hover {
    transition:.5s;
    background-color: #05060B;
    color: #ac4729;
}

.splash-illustration {
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.splash-illustration img {
    border-radius: 5px;
}

.splash-1 {
    justify-content: flex-start;
}

.splash-2 {
    justify-content: flex-end;
}

.brag-item {
    font-size:64px;
    text-align:center;
    margin-top:10px;
}

.brag-title {
    font-size: 24px;
    font-weight: bold;
}

@media screen and (max-width: 900px) {
  .container {
    width: 98%;
    padding: 0 4px;
  }
  .banner {
    height: 350px;
    background-position-x: -100px;
  }
  .slogan {
    width: 95vw;
    max-width: 95vw;
    padding: 24px;
    font-size: 1.1em;
    left: 50%;
    top: 35%;
    transform: translate(-50%, -50%);
  }

  .slogan .title {
    font-size: 20px;
  }

  .slogan .subtitle {
    font-size: 13px;
  }
}

@media screen and (max-width: 700px) {
  .container {
    width: 100%;
    padding: 0 2px;
  }
  .banner {
    height: 220px;
    background-position-x: -50px;
  }
  .slogan {
    width: 98vw;
    max-width: 98vw;
    padding: 10px;
    font-size: 1em;
    left: 50%;
    top: 35%;
    transform: translate(-50%, -50%);
  }
  .ad-buttons {
    flex-direction: column;
    gap: 8px;
  }
  .a21-row-padding {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .a21-row {
    padding-left: 0;
    padding-right: 0;
  }
  .rounded > img {
    max-width: 100%;
    height: auto;
  }
  .splash-1,
  .splash-2 {
    flex-direction: column !important;
    align-items: center !important;
    gap: 4px;
  }
  .splash-illustration img {
    max-width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 375px) {
    .banner {
        background-position-x:-200px;
        background-color: #0B151B;
        height: 180px;
        position:relative;
        width: 100vw;
    }

    .slogan {
        width: 100vw;
        max-width: 100vw;
        padding: 4px;
        font-size: 0.95em;
        left: 50%;
        top: 35%;
        transform: translate(-50%, -50%);
    }

    .container {
        height: 100% !important;
        width: 100vw;
        padding: 0 2px;
    }

    .container > div {
        padding: 0 !important;
        margin: 0 !important;
    }

    .a21-col-2, .a21-col-3 {
        width: 100% !important;
        display: block;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }
}