@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

* {
  box-sizing: border-box;
  text-decoration: none;
}
body {
  background-color: #232323!important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  background-size: cover !important;
}
/* ==================1st================================ */
.start{
  background-color: #bce998;
  box-shadow: 0 0 15px 5px #911818e3;
  margin: 0px 50px 0px 50px;
  border-radius: 20px;
  
}
.bottom-header {
  text-align: center;
  padding:25px ;
  font-size: 50px;
  color:  #911818e3;
  background-color:#bce998;
}

.bottom-quote{
  text-align: center;
  padding-top: 20px;
  padding-bottom: 10px;
  font-size: 30px;
  color: #911818e3;
  background-color:#bce998;
}

.bottom {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}

.bottom .img img {
  gap: 5px;
  width: 30rem;
  border-radius: 10px;
  padding: 20px;
  margin: 20px;
  box-shadow: 0 0 15px 5px #911818e3;
  animation: pulse 5s infinite;
}

/*Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1); 
  }
  100% {
    transform: scale(1);
  }
}
/* ===================2================================== */
.images {
  border-radius: 12px;
  display: flex;
  padding-top: 5px;
  gap: 50px;
  margin-left: 8rem;
  overflow-x: scroll;
}

.top-header {
  text-align: center;
  margin-bottom: 30px;
  font-size: 50px;
}

.top {
  display: flex;
  margin: auto;
  padding: 2rem;
  max-width: 100%;
}
.top ::-webkit-scrollbar {
  display: none;
}

.top img {
  width: 25rem;
  border-radius: 10px;
}

.new-header {
  text-align: center;
  font-size: 50px;
  box-shadow: 0 0 15px 5px #911818e3;
  margin: 50px 50px 70px 50px;
  border-radius: 20px;
  padding:25px ;
  color:  #911818e3;
  background-color:#bce998;
 
}

.new {
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
}

.new .img img {
  gap: 5px;
  width: 32vw;
  border-radius: 10px;
  box-shadow: 0 0 15px 5px #911818e3;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1); 
  }
  100% {
    transform: scale(1);
  }
}