@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* General Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #180036;
  color: white;
  font-family: "Montserrat", serif;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Styling for the Heading */
.container {
  display: block;
}

.container .heading {
  display: flex;
  margin: 20px auto;
  padding: 8px;
  width: 50%;
  height: 64px;
  border-radius: 15px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(51, 0, 146, 0.25);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  backdrop-filter: blur( 4px );
  -webkit-backdrop-filter: blur( 4px );
  border-radius: 15px;
}

.container .heading img {
  width: 45px;
}

.container .heading h1 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: none;
}

/* Styling for the description */
.container .description h2 {
  width: 65%;
  margin: 40px auto;
  font-weight: 700;
  font-size: 45px;
  letter-spacing: -1px;
}

.container .description p {
  font-size: 18px;
}

/* Styling for the feeling buttons */
.container .feeling {
  display: flex;
  width: 65%;
  margin: auto;
  gap: 10px;
}

.container .feeling .emotion {
  margin: 30px auto;
  padding: 15px 30px;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #7845f2;
  text-decoration: none;
  color: white;
  gap: 5px;
  cursor: pointer;
}

.container .feeling .emotion:hover {
  background-color: #7845f2;
  transition: .5s;
}

.container .feeling .emotion img {
  width: 30px;
  height: 30px;
}

.container .feeling .emotion p {
  font-weight: 700;
  text-transform: uppercase;
}

/* Styling for the footer */
.container .footer {
  margin-top: 40px;
}

.container .footer p{
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-size: 16px;
}

.container .footer p a {
  color: #7845f2;
  font-weight: 900;
}

/* Styling for the Quote Section */
.quote-container {
  display: none;
}

/* Styling for the Quote Heading */
.quote-container .quote-heading {
  display: flex;
  margin: 20px auto;
  padding: 8px;
  width: 50%;
  height: 64px;
  border-radius: 15px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(51, 0, 146, 0.25);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  backdrop-filter: blur( 4px );
  -webkit-backdrop-filter: blur( 4px );
  border-radius: 15px;
}

.quote-container .quote-heading img {
  width: 45px;
}

.quote-container .quote-heading h1 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: none;
}

/* Styling for the Quotes */
.quote-container .quotes {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 20px auto;
  padding: 15px 30px;
  width: 60%;
  height: 70vh;
  background-color: rgba(51, 0, 146, 0.25);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  backdrop-filter: blur( 4px );
  -webkit-backdrop-filter: blur( 4px );
  border-radius: 15px;
}

.quote-container .quotes .quote p {
  margin: 50px 40px 20px 40px;
  padding: 20px 40px;
  font-size: 18px;
  font-style: italic;
  letter-spacing: .5px;
  line-height: 33px;
  background-color: #3600b4;
  border-radius: 10px;
  border: 2px solid gold;
}

.quote-container .quotes .description p {
  margin: 0 auto;
  padding: 8px 15px;
  width: 55%;
  font-size: 16px;
  font-weight: 600;
  background-color: #3600b4;
  border: 2px solid gold;
  border-radius: 5px;
}

.quote-container .quotes .buttons {
  display: flex;
  margin: 10px auto;
  justify-content: center;
  gap: 10px;
}

.quote-container .quotes .buttons button {
  margin: 50px auto 10px auto;
  width: 150px;
  height: 50px;
  font-family: "Montserrat", serif;
  font-size: 16px;
  font-weight: 700;
  color: whitesmoke;
  background-color: #7845f2;
  border: none;
  border-radius: 10px;
  align-items: center;
  letter-spacing: -0.5px;
  cursor: pointer;
}

/* Media Queries */
@media only screen and (max-width: 800px) {
  .quote-container .quote-heading {
    width: 80%;
  }

  .quote-container .quotes {
    width: 80%;
  }
}

@media only screen and (max-width: 769px) {
  .container .heading {
    width: 80%;
  }

  .container .description h2 {
    margin: 30px auto;
    font-size: 30px;
  }
  
  .container .description p {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .container .feeling {
    flex-wrap: wrap;
    justify-content: center;
  }

  .container .feeling .emotion {
    margin: 5px auto;
    flex: 1 1 100%;
    max-width: 300px;
    justify-content: center;
  }

  .quote-container .quotes {
    height: 90vh ;
  }

  .quote-container .quotes .quote p {
    margin: 40px 20px 10px 20px;
    padding: 10px 20px;
    font-size: 16px;
  }

  .quote-container .quotes .description p {
    width: 60%;
    font-size: 14px;
  }
}

@media only screen and (max-width: 600px) {
  .container .description h2 {
    width: 80%;
    font-size: 25px;
  }

  .container .feeling .emotion {
    max-width: 100%;
  }

  .quote-container {
    height: 100%;
  }

  .quote-container .quotes .quote p {
    margin: 40px 10px 20px 10px;
    font-size: 15px;
    line-height: 25px;
  }

  .quote-container .quotes .description p {
    width: 90%;
    font-size: 13px;
  }

  .quote-container .quotes .buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px;
    width: 90%;
  }

  .quote-container .quotes .buttons button {
    margin: 10px auto 5px auto;
    flex: 1 1 100%;
  }
}