body {
   margin: 0;
   padding: 0;
   font-family: 'Segoe UI', sans-serif;
   background-color: #dadada;
   display: flex;
   justify-content: center;
   align-items: center;
   height: 83vh;
 }
 
 .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

 .button {
   display: flex;
   justify-content: center;
   align-items: center;
   width: 250px;
   margin: 5px auto;
   padding: 15px 20px;
   font-size: 18px;
   background-color: #333;
   color: white;
   text-decoration: none;
   border-radius: 8px;
   transition: background-color 0.3s ease;
 }
 
 .button:hover {
   background-color: #555;
 }
 
h1 {
   font-size: 32px;
   margin-top: 40px;
   margin-bottom: 30px;
   color: #222;
   font-weight: 700;
   letter-spacing: 1px;
 }
 
 .wifi-info {
   margin-top: 20px;
   padding: 10px 20px;
   background-color: #ffffff;
   border-radius: 10px;
   font-size: 16px;
   line-height: 1.6;
   color: #444;
   text-align: center;
   max-width: 300px;
   margin-left: auto;
   margin-right: auto;
   box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
 }
 
 .wifi-info strong {
   color: #222;
 }
 
 .logo {
   width: 90%;
   height: 180px;
   border-radius: 10px;
 }
 .google-review-box {
  height: 150px;
  text-align: center;
  margin-top: 10px;
  font-family: 'Segoe UI', sans-serif;
  padding-top: -10px;
}

.review-button {
  display: block;
  text-decoration: none;
  max-width: 280px;
  margin: 20px auto;
  background-color: #333;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: background-color 0.3s ease;
}

.review-button:hover {
  background-color: #555;
}

.review-text {
  font-size: 28px;
  margin-bottom: 10px;
  color: #ffffff;
}

.review-text-google {
  font-size: 45px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.stars {
  font-size: 24px;
  letter-spacing: 5px;
}

.star {
  color: transparent;
  -webkit-text-stroke: 1px gold;
  transition: color 3.7s ease;
}

.star.filled {
  color: gold;
}

.wifi-box {
  background-color: #fff;
  color: #333;
  padding: 0px 30px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.6;
  max-width: 280px;
  margin-top: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.hidden {
  display: none;
}

