* {
  padding: 0;
  margin: 0;
}
body, html {
  height: 100%;
  background-color: black;
}

body, html {
  height: 100%;
}
#bg {
  
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: black;
}

.reviews-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border: 1px solid #ccc;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 80vh;
  overflow-y: auto;
}
#verificationPopup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border: 1px solid #ccc;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

.reviews-popup-content {
  max-width: 600px;
  margin: 0 auto;
}

.reviews-popup button {
  margin-top: 20px;
  display: block;
  width: 100%;
}
#verificationPopup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border: 1px solid #ccc;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

#popup {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: transparent;
  padding: 20px;

  text-align: center;
}
#popup.show {
  display: block;
}
#stars {
  position: relative;
  width: 200px;
  height: 100px;
  margin: 0 auto;
}
.star {
  font-size: 2em;
  cursor: pointer;
  position: absolute;
  transition: transform 0.5s, color 0.5s;
}
.star::before {
  content: "☑️";
}

.star.selected::before{
  content: "✅";
}

#name {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: goldenrod;
  color: white;
  border: none;
  cursor: pointer;
  position: relative;
  top: 300px;
 
}
#submitRating {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: goldenrod;
  color: white;
  border-color: goldenrod;
  cursor: pointer;
  position: relative;
  top: 200px;
 
}
#comment{
  margin-top: 20px;
  padding: 10px 20px;
  background-color: white;
  border: goldenrod;
  border-radius: 10px;
  color: black;
  cursor: pointer;
  position: relative;
  top: 175px;
 
}
  #points {
    position: absolute;
    top: 30.25%;
    right: 22.5%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10px;
    width: 60px;
    color: white;
  }

#selectedRating {
  margin-top: 10px;
  font-size: 25px;
  color: white;
}

#rateBtn {
  position: absolute;
  top: 17%;
  right: 12.5%;
  height: 16%;
  width: 32%;
  border-color: transparent;
  background-color: transparent;
  color: transparent;
}

#emoji {
  font-size: 3em;
  margin-top: 10px;
  display: none;
}
.show-emoji {
  display: block;
  animation: bounce 1s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
  }
  40% {
      transform: translateY(-30px);
  }
  60% {
      transform: translateY(-15px);
  }
}


        #invisibleButton {
            width: 50%;
            height: 30%;
            background-color: transparent;
            border: none;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            cursor: pointer;
            z-index: 10;
        }
        .social-media {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.5s;
            transform: translate(-50%, -50%);
            opacity: 0;
        }
        .social-media.show {
            width: 100px;
            height: 100px;
            opacity: 1;
        }
        .social-media a {
            position: absolute;
            font-size: 2em;
            left:30%;
            color: whitesmoke;
            border-color: black;
            text-decoration: none;
            transition: transform 0.5s;
        }
        .social-media.show a:nth-child(1) {
            transform: translate(-540%, -500%);
        }
        
        .social-media.show a:nth-child(2) {
            transform: translate(550%, 550%);
        }
        .social-media.show a:nth-child(3) {
            transform: translate(-550%, 550%);
        }
        .social-media.show a:nth-child(4) {
          transform: translate(-350%, -700%);
      }
  
      .social-media.show a:nth-child(5) {
          transform: translate(300%, 700%);
      }
      .social-media.show a:nth-child(6) {
          transform: translate(-300%, 700%);
      }
      #popup, #popupS {
        display: none;
    }
    #popup.show, #popupS.show {
        display: block;
    }

/* Base styles */


/* Styles for screens 600px and wider */
@media (min-width: 600px) {
  .star {
      /* styles for wider screens */
  }
}
@media (min-width: 600px) {
  .social-media a { 
   }
}


/* Styles for mobile screens */
@media (max-width: 599px) {
  #stars {
  position: relative;
  width: 200px;
  height: 100px;
  margin: 0 auto;
}
.star {
  font-size: 2em;
  color: gray;
  cursor: pointer;
  position: absolute;
  transition: transform 0.5s, color 0.5s;
}
.star.selected {
  color: gold;
}
#stars .star:nth-child(1) {
  transform: rotate(0deg) translate(100px) rotate(0deg);
  top:-80%;
  left: 65%;
}
#stars .star:nth-child(2) {
  transform: rotate(45deg) translate(100px) rotate(-45deg);
  top: -100%;
  left: 90%;
}
#stars .star:nth-child(3) {
  transform: rotate(90deg) translate(100px) rotate(-90deg);
  top:-70%;
  left: 127%;
}
#stars .star:nth-child(4) {
  transform: rotate(135deg) translate(100px) rotate(-135deg);
  top: 20%;
  left: 150%;
}
#stars .star:nth-child(5) {
  transform: rotate(180deg) translate(100px) rotate(-180deg);
  top:130%;
  left: 148%;
}
#name {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: goldenrod;
  color: white;
  cursor: pointer;
  position: relative;
  top: 200px;
 
}
#submitRating {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: goldenrod;
  color: white;
  border-color: goldenrod;
  cursor: pointer;
  position: relative;
  top: 200px;
 
}
#comment{
  margin-top: 20px;
  padding: 10px 20px;
  background-color: white;
  border: goldenrod;
  border-radius: 10px;
  color: black;
  cursor: pointer;
  position: relative;
  top: 175px;
 
}
#points {
  position: absolute;
  top: 30.25%;
  right: 22%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10px;
  width: 30px;
  color: white;
}

  }

/* Styles for mobile screens */
@media (max-width: 599px) {
  .social-media.show {
    width: 100px;
    height: 100px;
    opacity: 1;
}
.social-media a {
    position: absolute;
    font-size: 2em;
    left:30%;
    color: beige;
    border-color: black;
    border-radius: 100px;
    text-decoration: none;
    transition: transform 0.5s;
}
.social-media.show a:nth-child(1) {
    transform: translate(-350%, -400%);
}

.social-media.show a:nth-child(2) {
    transform: translate(350%, 500%);
}
.social-media.show a:nth-child(3) {
    transform: translate(-350%, 450%);
}
.social-media.show a:nth-child(4) {
  transform: translate(-580%, -150%);
}

.social-media.show a:nth-child(5) {
  transform: translate(525%,350%);
}
.social-media.show a:nth-child(6) {
  transform: translate(-450%, 300%);
}
}