/*==================== GOOGLE FONTS ====================*/
@font-face {
  font-family: FVFFernando08;
  src: url("../font/FVFFernando08/FVFFernando08.ttf");
}

/*==================== BASE ====================*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-image: url("../img/dragonBallPixel/bg.png");
  background-repeat: repeat;
}

main {
  width: 100%;
  margin: 0 auto;
  padding: 0 50px;
}

h1,
h2,
h3,
h4 {
  color: #fff;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}
p {
  font-family: FVFFernando08;
  font-size: 12px;
  color: #fff;
}
/*==================== LAYOUT ====================*/
.grid {
  display: grid;
  gap: 1.5rem;
}

.header {
  width: 100%;
  top: 0;
  left: 0;
}
/*==================== HEADER ====================*/

.logo__DBP {
  width: 250px;
  margin-top: 20px;
}
.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.poster__DBP {
  width: 100%;
  margin-top: 20px;
}
.title__DBP {
  font-family: FVFFernando08;
  text-align: center;
  margin-top: 60px;
}
.data__DBP-fulltext div {
  width: 350px;
  margin: 0 10px;
}
.data__DBP {
  display: flex;
  justify-content: space-evenly;
  margin: 24px 0;
}
.data__DBP-img {
  width: 450px;
  margin: 0 10px;
}
.data__DBP-text {
  width: 250px;
  margin: 20px 10px;
  text-align: justify;
}

.map {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.5rem;
}

.img__data_DBPmap {
  margin-bottom: 1rem;
  border-radius: 0.5rem;
}

.box__image {
  width: 100%;
  margin: 24px auto;
  display: flex;
  justify-content: center;
}
.box__imageMap {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
}
.img__data_DBP {
  width: 300px;
  border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
}
.text__data_DBP {
  text-align: justify;
  margin: 0;
}
.video__trailer {
  width: 300px;
  border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
  margin-bottom: 30px;
}
.footer__logo {
  width: 200px;
  padding: 16px;
}
.footer__DB {
  width: 150px;
  padding: 16px;
}
.img__footer {
  display: flex;
  justify-content: space-around;
}
footer {
  background-color: rgba(0, 0, 0, 0.8);
  background-repeat: repeat;
}

/* For medium devices */
@media screen and (min-width: 586px) {
  .text__data_DBP {
    font-size: 14px;
    margin: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .text__data_DBP {
    font-size: 14px;
    margin: 0 20px;
  }
}
@media screen and (min-width: 768px) {
  .text__data_DBP {
    font-size: 16px;
    margin: 0 120px;
  }
  .img__data_DBP {
    width: 600px;
  }
  .video__trailer {
    width: 600px;
  }
  .map {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
/* For large devices */
@media screen and (min-width: 1024px) {
  .text__data_DBP {
    font-size: 16px;
    margin: 0 240px;
  }
  .img__data_DBP {
    width: 800px;
  }
  .video__trailer {
    width: 800px;
  }
}
