* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  min-height: 100vh;
  width: 100vw;
  max-width: 100vw;
  display: flex;
  justify-content: center;
}
#root {
  max-width: 1920px;
  width: 100vw;
  border: #a19c9c 1px solid; 
  display: flex;
  justify-content: center;
}

/*  */
#container {
   
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  /* justify-content: center; */
  gap: 35px;
}
#container_top {
  display: flex;
  flex-direction: column;
}

h1 {
  padding: 0%;
  margin: 0%;
  font-size: 2rem;
}
#container_middle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  /* border: #811d1d 3px solid; */
}
#id_destinations {
  display: flex;
  flex-direction: row;
  justify-content: start;
  flex-wrap: wrap;
  gap: 10px;
  /* border: #811d1d 3px solid; */
}
#id_destinations h3 {
  /* border: #811d1d 3px solid; */
}
.destination {
  display: flex;
  flex-direction: column;
  /* flex-wrap: wrap; */
  align-items: center;
  gap: 10px;
  border: #a59e9e 2px solid;
  padding: 5px;
  border-radius: 10px;
  width: 220px;
  min-width: 220px;
  max-width: 220px;
  height: 140px;
}
.destination:hover {
  border: #0f9e3a 2px solid;
}
.destination img {
  width: 210px;
  height: 90px;
  /* border: #811d1d 3px solid; */
  padding: 0%;
  margin: 0%;
}
.destination p {
  /* border: #811d1d 3px solid; */
  height: 20px;
  margin: 0px;
  padding: 0%;
  margin: 0%;
}

#container_bottom {
}

#id_btn_next {
  background-color: rgb(5, 202, 5);
  color: #ffffff;
  padding: 10px 40px;
  border-radius: 10px;
  font-size: large;
  border: none;
  text-decoration: none;
}

/* -------------------------------------------------------------------------------------------------- */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  #container {
    width: 100vw;
    height: auto;
    padding: 40px 15px;
    border-radius: 0px;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  #container {
   
    width: 100vw;
    height: auto;
    padding: 50px 20px;
    border-radius: 0px;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  #container {
     
    width: 95vw;
    height: auto;
    margin: auto;
    padding: 20px 20px;
    border-radius: 20px;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  #container {
   
    width: 90vw;
    height: auto;
    margin: auto;
    padding: 40px 30px;
    border-radius: 20px;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  #container {
     
    width: 85vw;
    height: auto;
    padding: 40px 30px;
    border-radius: 20px;
  }
  #id_destinations {
    gap: 30px;
  }
  #container_middle {
    gap: 15px;
  }
}
