/* styles.css */

body {
  font-family: "Comic Sans MS", cursive, sans-serif; /* Change font to a whimsical font */
  margin: 0;
  padding: 0;
  animation: flashing 1s infinite alternate;
  color: white; /* Change text color to white */
  text-shadow: 2px 2px 4px black; /* Add black shadow */
}

@keyframes flashing {
  from {
    background-color: #c300ff; /* Initial background color */
  }
  to {
    background-color: #ff0000; /* Flashing background color */
  }
}

.container {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  height: 100px;
  font: 100;
  font-weight: bolder;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
#logo-circle {
  width: 72px;
}

#hero {
  animation: hero-scaler 0.5s ease-in-out infinite;
}

@keyframes hero-scaler {
  0%,
  100% {
    transform: scale(100%);
  }
  50% {
    transform: scale(102%);
  }
}

.music-player {
  margin-left: 10px;
}

.vid-container {
  border: #010001 3px solid;
  border-radius: 25px;
  overflow: hidden;
  width: fit-content;
  height: fit-content;
}

.top-right-buttons1 {
  margin-right: 10px;
}

.top-right-buttons2 {
  margin-right: 10px;
}

.top-right-buttons2:hover {
  top: 0;
  left: 0;
  transform: scale(1.2); /* Increase the size to 110% on hover */
}

.top-right-buttons1:hover {
  top: 0;
  left: 0;
  transform: scale(1.2); /* Increase the size to 110% on hover */
}

.under-hero {
  margin: 80px 0;
}

.square-button {
  width: 40px;
  height: 40px;
  margin-left: 10px;
  cursor: pointer;
  background-color: #00f7ff;
  color: #7700ff;
  border-radius: 8px;
}

.wee-three-memes {
  margin: 250px 0;
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wee-three-memes img {
  width: 350px;
  height: auto;
}

.big-memes {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 70%;
}

.meme-card {
  border: #010001 3px solid;
  border-radius: 35px;
  margin: 0 15px;
  width: 500px;
  height: 500px;
}

.button2 {
  padding: 10px 20px;
  font-size: 16px;
  margin: 10px;
  cursor: pointer;
  border: none;
  background-color: #00f7ff;
  color: #7700ff;
  border-radius: 5px;
  font-weight: bolder;
}

.text-column {
  margin-top: 20px;
  margin-bottom: 20px; /* Add margin bottom to create space */
  text-align: center; /* Center text */
}

.text-column p {
  margin: 5px;
}

.column {
  margin: 10px; /* Add spacing between image columns */
}

@media (max-width: 768px) {
  .big-memes {
    flex-direction: column;
  }
}

@import url("https://fonts.googleapis.com/css?family=Fredoka+One");

button {
  font-family: "Fredoka One", cursive;
  border: 4px solid #302f3a;
  background-color: #c0ecee;
  color: #302f3a;
  position: relative;
  margin: 2rem 3rem;
  padding: 1rem 2rem;
  font-size: 1.15rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 10px;
  font-weight: 800;
}

button:hover {
  top: 0;
  left: 0;
  background-color: #ea3f45;
  color: #c0ecee;
}

button::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  left: -0.6rem;
  top: -0.5rem;
  z-index: -1;

  transition: all 200ms ease-out;
}

button:hover::before {
  top: 0;
  left: 0;
}

.button--bop:active {
  transform: translateY(3px);
}

.button--flick:active {
  animation: flick 640ms infinite;
}

.button--twist:active {
  animation: twist 800ms infinite;
}

.button--spin:active {
  animation: spin 800ms infinite;
}

@keyframes flick {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  67% {
    transform: translate(0.4rem, -1.8rem) rotate(160deg) scale(0.4);
  }
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}

@keyframes twist {
  0% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(60deg);
  }
  60% {
    transform: rotate(-20deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.scrolling-banner {
  width: 100%;
  background-color: #000000;
  color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 10px 0;
  text-align: center;
  animation: scroll 10s linear infinite;
}
