@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&family=Oswald:wght@300;400;500;700&display=swap");
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

input::-ms-clear {
  display: none;
}

button, pЗ,
input[type=submit] {
  display: inline-block;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a {
  text-decoration: none;
}

/* ---------- */
[class*=__container] {
  max-width: 1215px;
  padding: 0 15px;
  margin: 0 auto;
}

/* ------ */
html, body {
  min-width: 320px;
  min-height: 100%;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  min-height: 100vh;
  position: relative;
}

body {
  font-family: "Oswald";
  font-weight: 400;
  color: #252525;
  line-height: 1;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.edu-au-vic-wa-nt-pre-class {
  font-family: "Edu AU VIC WA NT Pre", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* ----------- */
.great-vibes-regular {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-style: normal;
}

body {
  background-color: black;
  height: 100vh;
}

.start {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: flex;
  gap: 64px;
}

.dot {
  background-color: white;
  width: 0px;
  height: 0px;
  border-radius: 100%;
  -webkit-transition: 3s all;
  transition: 3s all;
}

.visible {
  -webkit-box-shadow: 0px 0px 10px white;
          box-shadow: 0px 0px 10px white;
  -webkit-transition: 3s all;
  transition: 3s all;
  width: 75px;
  height: 75px;
}

.button {
  pointer-events: none;
  opacity: 0;
  background-color: red;
  color: white;
  border: none;
  width: 600px;
  height: 600px;
  font-size: 64px;
  text-shadow: 3px 3px 10px black;
  border-radius: 100%;
  font-family: "Great Vibes";
  -webkit-box-shadow: 0px 0px 100px rgb(95, 2, 2);
          box-shadow: 0px 0px 100px rgb(95, 2, 2);
  cursor: pointer;
  -webkit-transition: opacity 4s ease-in, -webkit-transform 0.5s ease-in-out, -webkit-box-shadow 0.5s ease-in-out;
  transition: opacity 4s ease-in, -webkit-transform 0.5s ease-in-out, -webkit-box-shadow 0.5s ease-in-out;
  transition: opacity 4s ease-in, transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
  transition: opacity 4s ease-in, transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out, -webkit-box-shadow 0.5s ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: rgb(95, 2, 2);
  -webkit-animation: pulse 10s infinite ease-in-out;
          animation: pulse 10s infinite ease-in-out;
  z-index: 100;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    -webkit-box-shadow: 0px 0px 100px rgb(95, 2, 2);
            box-shadow: 0px 0px 100px rgb(95, 2, 2);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
            transform: translate(-50%, -50%) scale(1.1);
    -webkit-box-shadow: 0px 0px 150px rgb(95, 2, 2);
            box-shadow: 0px 0px 150px rgb(95, 2, 2);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    -webkit-box-shadow: 0px 0px 100px rgb(95, 2, 2);
            box-shadow: 0px 0px 100px rgb(95, 2, 2);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    -webkit-box-shadow: 0px 0px 100px rgb(95, 2, 2);
            box-shadow: 0px 0px 100px rgb(95, 2, 2);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
            transform: translate(-50%, -50%) scale(1.1);
    -webkit-box-shadow: 0px 0px 150px rgb(95, 2, 2);
            box-shadow: 0px 0px 150px rgb(95, 2, 2);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    -webkit-box-shadow: 0px 0px 100px rgb(95, 2, 2);
            box-shadow: 0px 0px 100px rgb(95, 2, 2);
  }
}
body::after {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background-color: rgb(95, 2, 2);
  opacity: 0;
  -webkit-transition: opacity 2s ease-in-out;
  transition: opacity 2s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
}

body.filled::after {
  opacity: 1;
}

.button.fade-out {
  opacity: 0 !important;
  -webkit-transition: opacity 2s ease-in-out;
  transition: opacity 2s ease-in-out;
  pointer-events: none;
}

.message {
  position: absolute;
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 64px;
  color: white;
  font-family: "Great Vibes";
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 2s ease-in-out, visibility 2s ease-in-out;
  transition: opacity 2s ease-in-out, visibility 2s ease-in-out;
  z-index: 100;
  width: 500px;
  height: 100px;
  background-color: rgb(95, 2, 2);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.message.visible {
  opacity: 1;
  visibility: visible;
}

.congratulation {
  pointer-events: none;
  position: absolute;
  top: 10%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -webkit-transform-transform: translate(-50%, -50%);
  font-size: 50px;
  color: white;
  font-family: "Great Vibes";
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 2s ease-in-out, visibility 2s ease-in-out;
  transition: opacity 2s ease-in-out, visibility 2s ease-in-out;
  z-index: 100;
  width: 700px;
  height: 150px;
  text-align: center;
  background-color: rgb(95, 2, 2);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.congratulation.visible {
  opacity: 1;
  visibility: visible;
}

.span1 {
  font-size: 80px;
  margin-bottom: 20px;
}

.span2 {
  font-size: 80px;
  margin-top: 30px;
}