@import url('https://fonts.googleapis.com/css2?family=Dongle&family=Oleo+Script:wght@400;700&family=Sigmar+One&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  background-color: #000000;
}

.nav-list-second button {
  border: none;
  background: none;
}

.nav-bar img {
  width: 70px;
  height: 70px;
  margin: 10px 60px;
  transition: transform 0.5s;
}
.nav-bar img:hover {
  transform: scale(1.1);
}

.nav-bar p {
  font-size: 2.5rem;
  position: absolute;
    padding: 5px;
  margin-top: 15px;
  margin-left: 145px;
 font-family: "Sigmar One", sans-serif;
  font-weight: 400;
  font-style: italic;   text-transform: uppercase;
  animation-name: gradient;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

@keyframes gradient {
  from { color: #fdfdfd;}
  to { color: #FD6600;}
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  background-color: rgba(0, 0, 0,0.9);
}

.nav-list {
  position: relative;
  right: 30px;
}

.nav-list li {
  font-size: 1.2rem;
  display: inline-block;
  justify-content: space-between;
  margin: 20px 10px;
  padding: 14px;
  border-bottom: 3px solid #D0F0C0;
  transition: all 0.5s ;
}
.nav-list li:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 30px 8px 30px 8px;

}

.nav-list a , .nav-list-second a {
  text-decoration: none;
  color: inherit;
  color: white;
  font-style: italic;
} 

.nav-list a:visited , .nav-list-second a:visited {
  background-color: #002347;
}

.nav-bar-second li {
  list-style-type: none;
}

.nav-list-second li {
  font-size: 24px;
  border-radius: 40%;
  transition: background-color 0.5s ;
  transition: all 0.5s;
  padding: 8px;
}
.nav-list-second li:hover {
    transform: translateY(-7px);

}

#icon {
  font-size: 27px;
  text-decoration: none;
  color: inherit;
  color: white;
  transition: all 0.5s;
    font-style: italic;
}

.nav-list-second a {
  font-weight: 900;
  font-size: 24px;
  transition: color 0.5s;
  color: rgb(255, 255, 255);
  transition: all 0.5s;
    font-style: italic;
}

.nav-list-second li:hover a, .nav-list-second li:hover #icon {
   text-shadow: 0 10px 5px #D0F0C0;

}

.nav-bar-second {
  position: sticky;
  top: 0;
  width: 100%;
  border-radius: 30px;
  background-color: rgba(255, 255, 255,0.5);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  padding: 15px;
  z-index: 5;
}
.nav-bar-second ul {
  display: flex;
  justify-content: space-around;
}

.welcome {
  position: relative;
}

.welcome img {
  width: 500px;
  height: 500px;
  margin-left: 650px;
}

.phrase h3, .phrase h1{
  overflow: hidden;
  text-wrap: nowrap;
  animation: animate 3s steps(30) infinite alternate-reverse; 
}

@keyframes animate {
  from {
    width: 0ch;
  }
  to {
    width: 23ch;
  }
}

.phrase {
  position: absolute; 
  left: 50px;
  top: 250px;
} 

.phrase h1 {
  font-size: 5.3em;
  text-transform: uppercase;
  text-align: start;
  font-weight: bolder;
  line-height: 130px;
  background-image: linear-gradient(45deg, #43ced6 , #d2e43a 50%, #93ec10 100%); 
  background-clip: text; 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
}
.phrase h2 {
  position: absolute;
  z-index: -2;
  font-size: 10em;
  text-transform: uppercase;
  font-weight: bolder;
  opacity: 0.15;
  margin-top: 70px;
  background-image: linear-gradient(45deg, #43ced6 , #d2e43a 50%, #93ec10 100%); 
  background-clip: text; 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
}
.phrase h3 {
  font-size: 2.6em;
  text-align: start;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 80px;
  background-image: linear-gradient(45deg, #43ced6 , #d2e43a 50%, #93ec10 100%); 
  background-clip: text; 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
}

.phrase p {
  font-size: 1.4em;
  text-align: start;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 75px;
  background-image: linear-gradient(45deg, #43ced6 , #d2e43a 50%, #93ec10 100%); 
  background-clip: text; 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
}

.bundle {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 100px 1px;
}

.bundle img {
  width: 170px;
  height: 170px;
  border-radius: 0px 50px 0px 50px;
  border: 2px solid  #FD6600;
}

.bundle-one {
  display: flex;
  margin: 50px 10px;
}

.bundle-one p {
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  background-color: #000000;
  width: 180px;
  height: 170px;
  padding: 20px;
  border-radius: 50px 0px 50px 0px;
  border: 2px solid  #FD6600;
  transition: color 0.5;
  transition: background-color 0.5s ease-in;
}

.bundle-one p:hover {
  background-color: #ffffff;
  color: #000000;
}

.hover-underline {
  padding: 20px;
  text-align: center;
  margin: 50px 0;
  font-weight: bolder;
  font-size: 3.5rem;
  color: #43ced6; 
  background-image: linear-gradient(45deg, #43ced6 , #d2e43a 50%, #93ec10 100%); 
  background-clip: text; 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  position: relative;
  display: flex;
  justify-content: center;
}

.hover-underline::after,
.hover-underline::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #ff0000, #00ffff);
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-out;
}

.hover-underline::before {
  top: -5px;
  transform-origin: left;
}

.hover-underline:hover::after,
.hover-underline:hover::before {
  transform: scaleX(1);
}


.places {
  display: flex;
  justify-content: space-between;
  overflow-y: scroll;
  margin: 10px 50px;
}

.scale-one {
  transition: transform 0.5s;
}

.scale-one:hover {
  transform: scale(1.05);
}

.places img {
  width: 334px;
  height: 400px;
  border-radius: 20px 100px 20px 20px;
  border: 2px solid #FD6600;
  margin: 50px 50px;
  transition: transform 2s;
}

.places p {
  position: relative;
  font-size: 35px;
  font-weight: bold;
  background-image: linear-gradient(45deg, #43ced6 , #d2e43a 50%, #93ec10 100%); 
  background-clip: text; 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  top: -145px;
  left: 52px;
  padding-left: 20px;
  padding: 10px;
  transition: transform 4s;
  background-color: rgba(255, 255, 255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-block;
  width: 330px;
  transition: color 0.5;
  transition: background-color 0.5s ease-in;
}

.places p:hover {
  background-color: #002347;
  color: #ffffff;
}

.relative {
  position: relative;
}

.news img:hover {
  transform: scale(1.05);
}


.news {
  margin: 80px 50px;
  display: flex;
  justify-content: center;
}

.news img {
  width: 900px;
  height: 400px;
  border-radius: 50px 10px 50px 10px;
  border: 2px solid #FD6600;
  transition: transform 0.5s;

}

.new-info {
   display: flex;
  justify-content: center;
}
 
.new-info p {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.7);
  width: 400px;
  height: 350px;
   bottom: 110px;

  line-height: 50px;
  font-size: 25px;
  font-weight: bold;
  border-radius: 30px 10px 30px 10px;
  padding: 30px;
}

.new-info button {
  width: 100px;
  height: 70px;
  padding: 20px;
  font-size: 25px;
  border-radius: 20px;
    color: white;
  font-weight: 600;
  border: none;
  background-color: #002347;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.5s;
  transition: all 0.5s;
}
.new-info button:hover {
  background-color: white;
  color: #002347;
  
}

.head-plus {
  display: flex;
  justify-content: space-around;
  margin: 40px 40px;
}

.plus {
  display: flex;
  justify-content: space-around;
}
.beach {
  display: flex;
   justify-content: space-between;

  overflow-x: scroll;
  width: 630px;
  height: 450px;
  margin: 20px 50px;
}

#scale-two, #scale-three {
  transition: transform 0.5s;
}

#scale-two:hover, #scale-three:hover {
  transform: scale(1.03);
}


.beach img {
  width: 285px;
  height: 300px;
  margin: 40px 10px;
  border-radius: 30px 10px 10px 10px;
  border: 2px solid #FD6600;
}

.beach p {
  display: block;
  width: 280px;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  background-image: linear-gradient(45deg, #43ced6 , #d2e43a 50%, #93ec10 100%); 
  background-clip: text; 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  left: 12px;
  bottom: 115px;
  padding: 10px;
  background-color: rgba(255, 255, 255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.5s;
  transition: color 0.5s;
}

.beach p:hover {
  background-color: #002347;
  color: #ffffff;
}

.mountain {
  display: flex;
    justify-content: space-between;

  overflow-x: scroll;
  width: 630px;
  margin: 20px 50px;
}

.mountain img {
  width: 285px;
  height: 300px;
  margin: 40px 10px;
  border-radius: 50px 10px 10px 10px;
  border: 2px solid #FD6600;
}

.mountain p {
  display: block;
  width: 280px;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  position: relative;
  background-image: linear-gradient(45deg, #43ced6 , #d2e43a 50%, #93ec10 100%); 
  background-clip: text; 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  bottom: 115px;
  left: 12px;
  padding: 10px;
  background-color: rgba(255, 255, 255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.5s;
  transition: color 0.5s;
}

.mountain p:hover {
  background-color: #002347;
  color: #ffffff;
}


.stays button {
  width: 100px;
  height: 30px;
  padding: 10px;
  font-size: 15px;
  border-radius: 10px;
  border: none;
  background-color: #002347;
  color: white;
  transition: background-color 0.5s;
  transition: color 0.5s;
}
.stays button:hover {
  background-color: #ffffff;
  color: #002347;
}
.stays ,.current {
  display: flex;
  overflow-x: scroll;
}

.current {
  display: flex;
  justify-content: space-between;
  margin: 0px 40px;
  height: 375px;
}
.current img {
  width: 500px;
  height: 350px;
  border-radius: 100px 10px 10px 10px;
  margin: 10px 80px;
  border: 2px solid #FD6600;
}

.current p {
  font-size: 3.5rem;
  margin-left: 82px;
  
  margin-top: -140px;
  text-transform: uppercase;
 background-image: linear-gradient(45deg, #43ced6 , #d2e43a 50%, #93ec10 100%); 
  background-clip: text; 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  width: 496px;
  height: 90px;
  padding: 10px;
  text-align: center;
  transition: color 0.5s;
  transition: background-color 0.5s;
} 

.current p:hover {
  background-color:  #002347;
  color: white;
}

.stays img {
  width: 300px;
  height: 200px;
  border-radius: 50px 10px 30px 10px;
  margin: 40px 20px;
  border: 2px solid #FD6600;
}

.stays {
   display: flex;
  justify-content: space-between;
  margin: 0px 150px;
}

#stay-hover {
  transition: transform 0.5s;
  margin: 40px 20px;
  height: 500px;
}

#stay-hover button {
  height: 70px;
  width: 150px;
  padding: 10px;
  font-size: 20px;
  margin-top: 20px;
}

#stay-hover:hover {
  transform: scale(1.05);
}

.stays span {
  color: #002347;
  background-color: rgba(188, 188, 188, 0.9);
  border-radius: 60px 10px 30px 10px;
  margin-left: 10px;
}
.stays p {
  width: 300px;
  font-size: 20px;
  font-weight: 500;
  padding: 20px;
  margin-left: 30px;
  margin-top: -30px;
  transition: color 0.5s;
}
.stays p:hover {
  color: #002347;
}

.map {
  display: flex;
  justify-content: center;
}

.map img {
  margin: 50px 220px;
  border-radius: 35px;
  width: 900px;
  height: 100%;
  border: 2px solid #FD6600;
  opacity: 0.7;
  transition: transform 0.5s;
}

.map img:hover {
  transform: scale(1.05);
}
.asia {
  display: flex;
  justify-content: space-between;
  overflow-x: scroll;
  margin: 10px 230px;
}

.asia::-webkit-scrollbar , .current::-webkit-scrollbar ,
 .places::-webkit-scrollbar , .stays::-webkit-scrollbar,
  .beach::-webkit-scrollbar , .mountain::-webkit-scrollbar {
  display: none;
}

.asia img {
  width: 285px;
  height: 200px;
  margin: 40px 20px;
  border-radius: 50px 10px 0px 0px;
  border: 2px solid #FD6600;
}

#asia-scale {
  transition: transform 0.5s;
}

#asia-scale:hover {
  transform: scale(1.05);
}

.asia p {
  display: block;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  position: relative;
  background-image: linear-gradient(45deg, #43ced6 , #d2e43a 50%, #93ec10 100%); 
  background-clip: text; 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  width: 280px;
  left: 22px;
  bottom: 100px;
  padding: 10px;
  background-color: rgba(255, 255, 255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.5s;
  transition: color 0.5s;
}
.asia p:hover , .asia .special p:hover {
  background-color: #002347;
  color: #ffffff;
}

.asia .special p {
  display: block;
  font-size: 30px;
  font-weight: 700;
  position: relative;
  color: #002347;
  width: 280px;
  left: 22px;
  bottom: 100px;
  padding: 10px;
  background-color: rgba(255, 255, 255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.5s;
  transition: color 0.5s;
}


.about {
 width: 100%;
}

.pp {
  background-color: #002347;
  padding: 10px;
 width: 100%;
  margin: 50px 0px;
}
.pp h1, .pp h2 , .pp h3 {
  text-align: center;
  margin: 100px 30px;
  text-transform: uppercase;
  font-weight: 800;
  color: rgb(255, 255, 255);
  transition: color 0.5s;
}
.pp h1 {
  line-height: 60px;
}
.pp h2, .pp h3 {
  line-height: 0px;
  font-size: 25px;
}

.pp h1:hover, .pp h2:hover, .pp h3:hover {
  color: lightblue;
}


.Members {
  display: flex;
  justify-content: space-around;
  margin: 30px 0px;

}

.Members p {
  font-size: 20px;
  font-weight: 600;
  color: #002347;
  background-color: rgba(188, 188, 188, 0.9);
  padding: 20px;
  border-radius: 30px 10px 30px 10px;
  box-shadow: 5px 5px 5px black;
  transition: background-color 0.5s;
  transition: color 0.5s;
}
.Members p:hover {
  background-color: #002347;
  color: #ffffff;
}

.media {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 50px;
  transition: color 0.5s;
}

.media h1 {
  background-color: rgba(188, 188, 188, 0.9);
  padding: 15px;
  font-size: 1.3rem;
  border-radius: 30px 10px 30px 10px;
  box-shadow: 5px 5px 5px black;
  transition: background-color 0.5s;
  transition: color 0.5s;
}
.media h1:hover {
  background-color: #002347;
  color: #ffffff;
}


.media i {
  font-size: 40px;
  color: rgba(161, 161, 161, 0.9);
  transition: color 0.5s;
  border: none;
}

.media a {
  text-decoration: none;
  color: inherit;
}

#media:hover {
  color: lightskyblue;
  transform: scale(1.1);
}


.footer-content {
  display: flex;
  justify-content: space-around;
  margin-bottom: 2rem;
  background-color: #002347;
  width: 100%;
  padding: 50px 0;
  cursor: pointer;

}

.footer-column h3 {
  font-size: 2rem;
  font-weight: 600;
  color:#ffffff;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
  transition: color 0.5s;
}

.footer-column p {
  font-size: 1.1rem;
  background-image: linear-gradient(45deg, #43ced6 , #d2e43a 50%, #93ec10 100%); 
  background-clip: text; 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--orange);
  bottom: 0;
  left: 0;
}

.footer-column h3:hover, .footer-links  li a:hover,
.footer-links li:hover {
  color:lightblue;
}


.footer-links {
  list-style: none;
}

.footer-links li {
  margin: 0.7rem;
  color:#ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.5s;
}

#foot {
  margin-right: 20px;
  font-size: 1.7rem;
  color:#ffffff;
}
.footer-links a {
  color:#ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.5s;
}

.footer-bottom p {
  background-image: linear-gradient(45deg, #43ced6 , #d2e43a 50%, #93ec10 100%); 
  background-clip: text; 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent;
  font-size: 1.5rem;
  font-weight: 600;
  padding-bottom: 2rem;
  text-align: center;
  text-transform: uppercase;
}

#stays {
  display: block;
  height: 20px;
}

#places {
  display: block;
  height: 90px;
}

#asia {
  display: block;
  height: 80px;
}

#beach {
  display: block;
  height: 80px;
}

  * {
  margin: 0;   
  padding: 0;
  box-sizing: border-box;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media screen and (max-width: 1024px) {
  .nav-bar {
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
  }

  .nav-bar img {
    width: 80px;
    height: auto;
  }

  .nav-bar p {
    font-size: 1.5rem;
    margin: 5px 0;
    position: static;
  }

  .nav-list a, .nav-bar-second a {
    font-size: 0.9rem;
  }

  .nav-bar-second {
    padding: 5px;
  }

  .nav-list-second {
    flex-direction: row;
    justify-content: space-between;
    gap: 5px;
  }

  .nav-list-second li a {
    font-size: 0.9rem;
    padding: 6px 10px;
  }

  .welcome img {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .phrase {
    text-align: center;
    padding: 20px;
  }

  .phrase h1 { font-size: 2rem; line-height: 1.2; }
  .phrase h2 { font-size: 3rem; }
  .phrase h3 { font-size: 1.2rem; line-height: 1.4; }
  .phrase p  { font-size: 1rem; line-height: 1.4; }

  .bundle, .bundle-one, .head-plus, .plus, .media, .Members {
    flex-direction: column;
    align-items: center;
  }

  .places img, .news img, .beach img, .mountain img,
  .current img, .stays img, .asia img, .map img {
    width: 90%;
    height: auto;
    margin: 10px auto;
  }

  .news, .map, .asia, .current, .stays {
    width: 100%;
    margin: 0 auto;
  }

  .new-info p {
    position: static;
    width: auto;
    height: auto;
    padding: 15px;
    font-size: 1rem;
  }

  .new-info button {
    font-size: 1rem;
    padding: 10px;
    width: auto;
  }

  .pp {
    width: 100%;
    padding: 10px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  
.nav-bar {
    flex-direction: column;
    align-items: center;
  }

  .nav-bar p {
    position: static;
    margin: 10px 0;
    text-align: center;
  }

  .nav-list {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-list li {
    font-size: 18px;
    padding: 10px;
    margin: 10px 5px;
  }

  .nav-bar-second ul {
    flex-wrap: wrap;
  }

  .nav-list-second li {
    padding: 5px;
  }

  .nav-list-second li a {
    font-size: 0.8rem;
  }
 #icon {
    font-size: 1.1rem;
  }
  .welcome img {
    width: 100%;
    height: auto;
  }

  .phrase { padding: 15px;
           margin-top: 300px;
           margin-right: 25px;
 }
  .phrase h1 { font-size: 1.5rem; }
  .phrase h2 { font-size: 1.7rem; }
  .phrase h3 { font-size: 1.4rem; }
  .phrase p  { font-size: 1rem;
             }

  .bundle-one {   
   width: 100%;
    flex-direction: column;
    align-items: center;
    margin: 10px 0;
  }

  .bundle-one p {
    height: auto;
    text-align: center;
    margin-bottom: 10px;
  }

  .beach, .mountain, .asia, .stays{
    display: flex;
   width: 100%;
    flex-direction: row;  
    flex-wrap: nowrap;    
    overflow-x: auto;  
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
 .places , .current {
  display: flex;
   width: 90%; 
    flex-direction: row;  
    flex-wrap: nowrap;    
    overflow-x: auto;  
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  
 .current {
  height: auto;
  margin-left: 15px;
  }

.pp h2 {
   font-size: 0.4rem;
 display: flex;
 flex-direction: column;
 
}
 
 .pp h3 {
  font-size: 0.8rem;
   display: flex;
 flex-direction: column;
  }

 .hover-underline {
  font-size: 1.9rem;
 }

  .places img, .beach img, .mountain img,
  .asia img, .map img{
    width: 330px;
    height: 240px;
   margin: 0 30px;
  }

 .places p {
  font-size: 1.3rem;
  width: 326px;
  margin-left: -20px;
   top: 5px;
 }

  .places {
    margin-left: -5px
  }
  
 .beach p , .mountain p {
    width: 326px;
  margin-left: 20px;
  font-size: 1.3rem;
   top: 10px;
 }

 .asia p {
  width: 326px;
  margin-left: 10px;
  font-size: 1.3rem;
   top: 5px;
 }
 
 .current img {
width: 350px;
  height: 250px;
  margin: 30px 20px 100px 20px;
 }
.current p {
 width: 346px;
 height: auto;
 margin-left: 22px;
 margin-top: 10px;
 text-align: center;
 font-size: 1.5rem;
}

 .stays img {
  width: 280px;
   height: 200px;
  margin: 30px 25px;
 }
 .new-info {
  width: 100%
 }
 
.new-info p {
 width: 90%;
 height: auto;
 padding: 10px;
 font-size: 1.1rem;
}
 
 
 .Members p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding: 12px;
 }

 .media h1 {
font-size: 1.2rem;
  margin-bottom: 15px;
 }
 .media a {
font-size: 1rem;
  margin-bottom: 20px;
 }


 
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

