* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 62, 5%;
}

body {
  height: 100%;
  width: 100%;
  background-color: #1b1e23;
}

main {
  display: flex;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
}

.gallery-box {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px
}

.card_gallery {
  margin-top: 30px;
  border: 20px solid white;
  border-top: 40px solid white;
  background-color: white;
  width: 360px;
  height: 510px;
  position: relative;
}

img {
  width: 100%;
  height: 400px;

}

.box_info {
  height: 20px;
  width: 100%;
  background-color: white;
}

.group-countries {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  margin-left: 0.1rem;
}

span {
  margin-left: 8px;
  font-size: 20px;
  font-weight: bold;
}

.box_info p {
  font-size: 17px;
}

.icone {
  width: 25px;
  height: 25px;
}

@media only screen and (max-width: 365px) {
  .card_gallery {
    width: 300px;
    height: 420px;
  }

  img {
    height: 300px;
  }
}


@media(min-width: 1480px) {
  .gallery-box {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
  }

  .card_gallery {
    margin-bottom: 30px;
  }
}