body {
  overflow-y: scroll;
}


h1 {
  font-size: 65px;
}

h5 {
  padding-left: 10%;
  padding-right: 10%;
  color: #909697;
}

a {
  text-decoration: none;
  /* Remove underline */
  color: white;
}



.login-with-google-btn {
  transition: background-color .3s, box-shadow .3s;
  padding: 12px 16px 12px 42px;
  border: none;
  border-radius: 3px;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 1px 1px rgba(0, 0, 0, .25);

  color: #757575;
  font-size: 14px;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;

  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTcuNiA5LjJsLS4xLTEuOEg5djMuNGg0LjhDMTMuNiAxMiAxMyAxMyAxMiAxMy42djIuMmgzYTguOCA4LjggMCAwIDAgMi42LTYuNnoiIGZpbGw9IiM0Mjg1RjQiIGZpbGwtcnVsZT0ibm9uemVybyIvPjxwYXRoIGQ9Ik05IDE4YzIuNCAwIDQuNS0uOCA2LTIuMmwtMy0yLjJhNS40IDUuNCAwIDAgMS04LTIuOUgxVjEzYTkgOSAwIDAgMCA4IDV6IiBmaWxsPSIjMzRBODUzIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNNCAxMC43YTUuNCA1LjQgMCAwIDEgMC0zLjRWNUgxYTkgOSAwIDAgMCAwIDhsMy0yLjN6IiBmaWxsPSIjRkJCQzA1IiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNOSAzLjZjMS4zIDAgMi41LjQgMy40IDEuM0wxNSAyLjNBOSA5IDAgMCAwIDEgNWwzIDIuNGE1LjQgNS40IDAgMCAxIDUtMy43eiIgZmlsbD0iI0VBNDMzNSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PHBhdGggZD0iTTAgMGgxOHYxOEgweiIvPjwvZz48L3N2Zz4=);
  background-color: white;
  background-repeat: no-repeat;
  background-position: 12px 11px;

  &:hover {
    box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 2px 4px rgba(0, 0, 0, .25);
  }

  &:active {
    background-color: #eeeeee;
  }

  &:focus {
    outline: none;
    box-shadow:
      0 -1px 0 rgba(0, 0, 0, .04),
      0 2px 4px rgba(0, 0, 0, .25),
      0 0 0 3px #c8dafc;
  }

}




#header {
  z-index: 1;
  position: fixed;
  height: 60px;
  width: 70vw;
  margin: auto;
  left: 0;
  right: 0;
  border-radius: 100px;
  background-color: lightblue;
  /* Example background color for the header */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-shadow: 0 0 10px rgba(255, 198, 198, 0.6);

}


.header-logos {
  float: left;
}

.header-button {
  height: 30px;
  width: 80px;
  border-radius: 20px;
  background-color: #11a100;
  /* Example background color for the button */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  /* Transition effect */
}

.header-button:hover {
  background-color: #FF1C4B;
  /* Darker background color on hover */
}


.card {
  position: relative;
  width: 300px;
  height: 400px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  margin: 0 auto;
  padding: 0px 20px 80px 20px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, .2);
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  overflow: hidden;
}

.card:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.title {
  color: #fff;
  font-size: 40px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  text-align: center;
  line-height: 100px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, .2);
}

#sweetest {
  font-weight: bolder;
  font-size: 50px;
  color: aliceblue;
  text-align: center;
}

.price h4 {
  margin: 0;
  padding: 20px 0;
  color: #fff;
  font-size: 30px;
}

.option ul li {
  margin: 0 0 10px;
  padding: 0;
  color: #fff;
  font-size: 16px;
}

.card-container {
  margin: 30px
}

.small {
  font-size: 15px;
}


#button-container {
  display: flex;
  gap: 10px;
}


#text-and-video {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  padding-bottom: 100px;
}

#landing-text {
  width: 40vw;
  padding-top: 20px;
  padding-bottom: 50px;
  text-align: center;
}


#card-main-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
}


@media screen and (max-width: 1200px) {
  #text-and-video {
    flex-direction: column;
    width: 90vw;
    margin: auto;
  }


  #landing-text {
    width: 80vw;
    text-align: center;
  }

  #card-main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }


  #header {
    height: 90px;
    width: 85vw;
  }

}