@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Play:wght@400;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Play', sans-serif;
    background:
        repeating-linear-gradient(
            45deg,
            #ff0088,
            #ff0088 20px,
            #ffcc00 20px,
            #ffcc00 40px
        );
    color: #111;
    min-height: 100vh;
}

.hero {
    text-align: center;
    padding: 50px 20px;
    position: relative;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    color: #00e5ff;
    text-shadow:
        4px 4px 0 #000,
        8px 8px 0 #ff00aa;
    transform: rotate(-3deg);
    margin-bottom: 20px;
}

.tagline {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.5rem;
    color: #fff;
    background: #000;
    display: inline-block;
    padding: 10px 20px;
    transform: rotate(2deg);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: #00ff66;
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    padding: 18px 36px;
    text-decoration: none;
    border: 4px solid #000;
    box-shadow: 6px 6px 0 #000;
    transition: 0.2s;
}

.cta-button:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 #000;
}

.sticker {
    position: absolute;
    background: #ffeb00;
    border: 4px solid #000;
    border-radius: 50%;
    font-weight: 900;
    padding: 20px;
    box-shadow: 5px 5px 0 #000;
}

.sticker-left {
    left: 10%;
    top: 60px;
    transform: rotate(-15deg);
}

.sticker-right {
    right: 10%;
    top: 120px;
    transform: rotate(15deg);
}

.about {
    background: rgba(255,255,255,0.95);
    margin: 10px auto 40px;
    padding: 20px;
    max-width: 900px;
    border: 6px solid #000;
    box-shadow: 10px 10px 0 #000;
}

.about h2 {
    color: #ff0088;
    margin-bottom: 15px;
    font-size: 2rem;
}

.container {
    display: flex;
  justify-content: center;
  align-items: center;
    width: 100%;
  height: 100px;
  position: relative;
  border: 3px solid #000;
  background-color: white;
}


.center {
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.highlights {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #00e5ff;
    padding: 25px;
    border: 5px solid #000;
    box-shadow: 8px 8px 0 #000;
    transform: rotate(-1deg);
}

.card:nth-child(2) {
    transform: rotate(1deg);
    background: #ff66c4;
}

.card:nth-child(3) {
    transform: rotate(-1deg);
    background: #ffee00;
}

.card:nth-child(4) {
    transform: rotate(1deg);
    background: #00ff66;
}

.card:nth-child(5) {
    transform: rotate(-1deg);
    background: #00e5ff;
}
.card:nth-child(6) {
    transform: rotate(1deg);
    background: #ffbd66;
}

.card h3 {
    margin-bottom: 10px;
}

footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 25px;
    font-weight: bold;
}

.changing-word {
    text-shadow: 2px 2px black;
    color: #00ff66;
    font-weight: bold;
}
.play-regular {
  font-family: "Play", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.play-bold {
  font-family: "Play", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.contact {

    padding: 2rem;
    border-radius: 12px;
}

.contact:popover-open {
    position: fixed;
    inset: 0;
    margin: auto;

    width: 400px;
    max-width: 90vw;

    background-color: #000;
    color: #00ff66
}

.button {
    display: inline-flex;
    background-color: #00ff66;
    color: #000;
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border: 4px solid #000;
    cursor: pointer;
    transition: 0.2s;
}
/* Style all font awesome icons */
.fa {
  padding: 20px;
  font-size: 30px;
  width: 50px;
  text-align: center;
  text-decoration: none;
}

/* Add a hover effect if you want */
.fa:hover {
  opacity: 0.7;
}

/* Set a specific color for each brand */

/* Facebook */
.fa-facebook {
  background: #3B5998;
  color: white;
}

/* Twitter */
.fa-twitter {
  background: #55ACEE;
  color: white;
}

/* YouTube */
.fa-youtube {
  background: #FF0000;
  color: white;
}
/* Instagram */
.fa-instagram {
  background: #125688;
  color: white;
}