.bubbly-button {
  -webkit-appearance: none;
  appearance: none;
  background-color: #7b74e2;
  color: #fff;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;
}

.bubbly-button:focus {
  outline: 0;
}
.bubbly-button:before, .bubbly-button:after {
  position: absolute;
  content: "";
  display: block;
  width: 140%;
  height: 100%;
  left: -20%;
  z-index: -1000;
  transition: all ease-in-out 0.5s;
  background-repeat: no-repeat;
}
.bubbly-button:before {
  display: none;
  top: -75%;
  background-image: radial-gradient(circle, #7b74e2 20%, transparent 20%), radial-gradient(circle, transparent 20%, #7b74e2 20%, transparent 30%), radial-gradient(circle, #7b74e2 20%, transparent 20%), radial-gradient(circle, #7b74e2 20%, transparent 20%), radial-gradient(circle, transparent 10%, #7b74e2 15%, transparent 20%), radial-gradient(circle, #7b74e2 20%, transparent 20%), radial-gradient(circle, #7b74e2 20%, transparent 20%), radial-gradient(circle, #7b74e2 20%, transparent 20%), radial-gradient(circle, #7b74e2 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
}
.bubbly-button:after {
  display: none;
  bottom: -75%;
  background-image: radial-gradient(circle, #7b74e2 20%, transparent 20%), radial-gradient(circle, #7b74e2 20%, transparent 20%), radial-gradient(circle, transparent 10%, #7b74e2 15%, transparent 20%), radial-gradient(circle, #7b74e2 20%, transparent 20%), radial-gradient(circle, #7b74e2 20%, transparent 20%), radial-gradient(circle, #7b74e2 20%, transparent 20%), radial-gradient(circle, #7b74e2 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%, 20% 20%;
}
.bubbly-button:active {
  transform: scale(0.9);
  background-color: #7b74e2;
  box-shadow: 0 2px 25px rgba(255, 0, 130, 0.2);
}
.bubbly-button.animate:before {
  display: block;
  animation: topBubbles ease-in-out 0.75s forwards;
}
.bubbly-button.animate:after {
  display: block;
  animation: bottomBubbles ease-in-out 0.75s forwards;
}

@keyframes topBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes bottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

.gradient {
background-image: -webkit-linear-gradient(125deg, #873bce, #795997, #cfb3ea);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-webkit-animation: hue 15s infinite linear;
}@-webkit-keyframes hue {
 from {
   -webkit-filter: hue-rotate(0deg);
 }
 to {
   -webkit-filter: hue-rotate(-360deg);
 }
}

html {
  width: 100vw;
}

/* #home {
  background: url("/assets/images/home-bg.png");
  background-size: cover;
  background-repeat: no-repeat; 
  background-position-y: -7rem;
}
 */
#msg {
  background: url("/assets/images/home-bg-end.png");
  background-size: cover;
  background-repeat: no-repeat; 
  background-color: #1a1a1a;
} 

.card {
  background: rgba(11,17,33,0.8);
  border: 1px solid #293445;
  border-radius: 25px;
  width: 100%;
  height: 600px;
  transition: 0.2s ease;
}

.card-selector {
  margin-top: 4%;
  display: inline-block;
  border-radius: 50px;
  background-color: rgba(28, 28, 28, 0.5); /* 0.5 represents 50% transparency */
  width: 60%;
  border: 1px solid #474747;
}

.card-selector .buttons {
  display: inline-block;
  padding: 4px;
  display: flex; /* Use flexbox to arrange buttons in a row */
  height: 100%; /* Set height of .buttons to 100% */
}

.card-selector button {
  display: inline-block;
  flex: 1; /* Distribute the available space equally among the buttons */
  padding: 8px;
  width: 100%; /* Make each button take up the full width */
  background: none;
  height: 100%;
  font-size: 18px;
  border: none;
  color: #c2c2c2;
  border-radius: 10px;
  transition: 0.2s ease;
}

.card-selector button:hover {
  color: white;
}

.card-selector .selected {
  display: inline-block;
  flex: 1; /* Distribute the available space equally among the buttons */
  padding: 8px;
  width: 100%; /* Make each button take up the full width */
  background-color: rgba(71, 71, 71, 0.5); /* 0.5 represents 50% transparency */
  height: 100%;
  font-size: 18px;
  border: none;
  color: #c2c2c2;
  border-radius: 10px;
}

/* Select the first button within .buttons */
.card-selector .buttons button:first-child {
  /* Your styles for the first button */
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  margin-right: 5px;
}

/* Select the last button within .buttons */
.card-selector .buttons button:last-child {
  /* Your styles for the last button */
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  margin-left: 5px;
}

#features {
  text-align: center;
  align-content: center;
  align-items: center;
}

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');

.bento {
  text-align: center;
  align-content: center;
  align-items: center;
}

.bento-row {
  display: inline-block;
  display: flex; /* Use flexbox to arrange buttons in a row */
  width: 60%;
  margin-left: 20%;
  margin-right: 20%;
}

.top .bento-box:first-child {
  border-top-left-radius: 50px;
}

.top .bento-box:last-child {
  border-top-right-radius: 50px;
}

.bottom .bento-box:first-child {
  border-bottom-left-radius: 50px;
}

.bottom .bento-box:last-child {
  border-bottom-right-radius: 50px;
}

.bento-row .bento-box {
  flex: 1; /* Distribute the available space equally among the buttons */
  width: 100%; /* Make each button take up the full width */
  padding: 10px;
  display: inline-block;
  /* background-color: rgba(28, 28, 28, 0.5);  */
  background: none;
  border: 1px solid #2b2b2b;
  margin: 3px;
  border-radius: 5px;
  height: 320px;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  font-weight: lighter;
  transition: 0.2s ease;
}

/* .bento-row .bento-box h4 {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
}

.bento-row .bento-box p {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  font-size: 14px;
  color: rgb(107, 107, 107)
} */

.ogg {
  background: url("/static/img.png");
  background-size: cover; /* This will make the image cover the entire container */
  background-repeat: no-repeat; /* This will prevent the image from repeating */
}

/* .bento-row .bento-box:hover {
  border: 1px solid #ededed;
} */

iframe {
  border: none;
  outline: none;
}

.c {
  position: relative;
}

.bento-box-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}