/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* --------- END Styles Reset ---------- */

:root {
  --disco-pink: #f781ff;
  --disco-purple: #d181ff;
  --disco-blue: #8183ff;
  --disco-green: #81ffaf;
  --disco-yellow: #fdff81;
  --disco-orange: #ffd181;
  --disco-red: #ff8181;
}



/* --------- START Base Styles ---------- */
body {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#mouseoverDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: aquamarine;
    width: 100vw;
    height: 55vh;
}

#buttonOverlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    /* allows interaction with the rest of the page despite it overlaying 100% of the page */
    pointer-events: none;
}

#wonderBtn {
    padding: 1em;
    min-width: 120px;
    min-height: 60px;

    /* allows interaction with button while in the overlay */
    pointer-events: initial;
}

/* --------- END Base Styles ---------- */

/* --------- START Varied Div Styles ---------- */

/* Marquee styles - Source: https://codepen.io/hexagoncircle/pen/eYMrGwW */

.marquee {
    --gap: 1rem;
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    height: 100%;
  }
  
  .marquee__content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    font-size: 50vh;
  }
  
  @keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-100% - var(--gap)));
    }
  }

/* Enable animation */
.enable-animation .marquee__content {
    animation: scroll 300s linear infinite;
}



/* --------- END Varied Div Styles ---------- */

/* --------- START Varied Button Styles ---------- */

.button-large {

}

.button-small {

}

.button-round {

}

.button-squared {

}

.button-left {
  margin-left: -30vw;
}

.button-right {
  margin-left: 30vw;
}

.button-up {
  margin-top: -30vw;
}

.button-down {
  margin-top: 30vw;
}


/* --------- START discoTime Styles ---------- */

.button-shake {
  animation: button-shake 1s ease infinite;
}
@keyframes button-shake {
  0% {margin-right: 0vw;}
  50% {margin-right: 5vw;}
  100% {margin-right: 0vw;}
}

.button-hop-1 {
  animation: button-hop-1 0.5s ease 1;
}
@keyframes button-hop-1 {
  0% {margin-top: 0vw;}
  50% {margin-top: -15vw;}
  100% {margin-top: 0vw;}
}

.button-hop-2 {
  animation: button-hop-2 0.5s ease 2;
}
@keyframes button-hop-2 {
  0% {margin-top: 0vw;}
  50% {margin-top: -15vw;}
  100% {margin-top: 0vw;}
}

/* --------- END discoTime Styles ---------- */


/* --------- START lineStyle Styles ---------- */

.width { max-width: 400px; }

.line-height { line-height: 1.6; }

/* --------- END lineStyle Styles ---------- */

/* --------- START fontSize Styles ---------- */

.font-medium { font-size: 16px; }

.font-little { font-size: 10px; }

.font-tiny { font-size: 8px; }

.font-teeny-tiny { font-size: 6px; }

.font-small { font-size: 12px; }

/* --------- END fontSize Styles ---------- */


/* --------- END Varied Button Styles ---------- */



/* --------- START Varied Body Styles ---------- */

/* --------- START discoTime Styles ---------- */
.disco-start {
  animation: disco-start 10s ease infinite;
}

@keyframes disco-start {
  0% {background-image: linear-gradient(to bottom right, var(--disco-pink), var(--disco-purple));}
  20% {background-image: linear-gradient(to top right, var(--disco-purple), var(--disco-blue));}
  40% {background-image: linear-gradient(to bottom left, var(--disco-blue), var(--disco-green));}
  50% {background-image: linear-gradient(to top left, var(--disco-green), var(--disco-yellow));}
  60% {background-image: linear-gradient(to bottom right, var(--disco-yellow), var(--disco-red));}
  80% {background-image: linear-gradient(to bottom left, var(--disco-red), var(--disco-orange));}
  90% {background-image: linear-gradient(to top right, var(--disco-orange), var(--disco-blue));}
  100% {background-image: linear-gradient(to top left, var(--disco-blue), var(--disco-pink));}
}
/* --------- END discoTime Styles ---------- */


/* --------- END Varied Body Styles ---------- */