@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Protest+Strike&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --light: white;
  --grey: #494949;
  --dark: #3a3a3a;
  --gold: rgba(255, 187, 0, 0.828);
  --blue: #2eb1c2;
  --green: #04a126;
  --lakegreen: #01871e;
  --purple: #6416b3;
  --orange: #ed490e;
  --red: #e51106;
  --dark: black;

}

body {
  background-color: #224941;
  background-image: url("images/forest.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* url('img/trees.jpg') no-repeat center center/cover; */
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;

  overflow-x: none;
}

h1 {
  margin-top: 66px;
}

#relaxer {
  position: absolute;
  top: 1%;
  text-align: center;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  height: 300px;
  width: 300px;
  position: absolute;
  top: 24%;
  transform: scale(1);
}

.circle {
  background-color: #010f1c;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}


.gradient-circle {
  background: conic-gradient(#55b7a4 0%,
      #4ca493 40%,
      #fff 40%,
      #fff 60%,
      #336d62 60%,
      #2a5b52 100%);
  height: 320px;
  width: 320px;
  z-index: -2;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: -10px;
}

.pointer {
  background-color: white;
  border-radius: 50%;
  height: 22px;
  width: 22px;
  display: block;
}

.pointer_balls {
  position: absolute;
  bottom: 1%;
  left: 1%;
  padding: 2px;

}

#pb {
  transition: transform .2s ease-in-out;
  box-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.8);
}

#pg {
  transition: transform .2s ease-in-out;
  box-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.8);
}

#pp {
  transition: transform .2s ease-in-out;
  box-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.8);
}

#pb:hover {
  box-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.8);
  transform: scale(1.5);
  border: 1px solid black;
}

#pg:hover {
  box-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.8);
  transform: scale(1.5);
  border: 1px solid black;
}

#pp:hover {
  box-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.8);
  transform: scale(1.5);
  border: 1px solid black;

}

.pointer_blue {
  cursor: pointer;
  background-color: #13a4ec;
  border: 1px solid var(--dark);
  border-radius: 50%;
  height: 22px;
  width: 22px;
  display: block;
}

.pointer_green {
  cursor: pointer;
  background-color: #217001;
  border-radius: 50%;
  height: 22px;
  width: 22px;
  display: block;
}

.pointer_purple {
  cursor: pointer;
  background-color: #5c00e6;
  border-radius: 50%;
  height: 22px;
  width: 22px;
  display: block;
}


.pointer-container {
  position: absolute;
  top: -40px;
  left: 140px;
  width: 20px;
  height: 190px;
  animation: rotate 7.5s linear forwards infinite;
  transform-origin: bottom center;
}

/* Start of: Music */

.music_toggle {
  position: absolute;
  bottom: 2%;
  right: 1%;
}

#music {
  position: absolute;
  cursor: pointer;
  bottom: 2%;
  width: 100px;
}

#music:hover {
  filter: invert(100%);
  -webkit-filter: invert(100%);
}

/* End of: Music */

/* Start of: Background Thumbnails */
.bgImageThumbnails {
  display: flex;
  justify-content: space-evenly;
  z-index: 700;
  position: absolute;
  bottom: 2%;
  text-align: center;
  left: 50%;
  transform: translate(-50%);
  padding: 2px;
}

#ocean,
#forest,
#blank,
#invert {
  z-index: 600;
  cursor: pointer;
  width: auto;
  height: 70px;
}

#ocean:hover {
  filter: invert(100%);
  -webkit-filter: invert(100%);
}

#forest:hover {
  filter: invert(100%);
  -webkit-filter: invert(100%);
}

#blank {
  filter: invert(100%);
  -webkit-filter: invert(100%);
}

#invert:hover {
  filter: invert(100%);
  -webkit-filter: invert(100%);
}



/* End of: Background Thumbnail  */

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.container.grow {
  animation: grow 3s linear forwards;
}

@keyframes grow {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.2);
  }
}

.container.shrink {
  animation: shrink 3s linear forwards;
}

@keyframes shrink {
  from {
    transform: scale(1.2);
  }

  to {
    transform: scale(1);
  }
}

/* Start of: Media Query Breakpoints */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

  h1 {
    display: none;
  }

  .container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    height: 300px;
    width: 300px;
    position: relative;
    transform: scale(1);
  }

  .circle {
    background-color: #010f1c;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .gradient-circle {
    background: conic-gradient(#55b7a4 0%,
        #4ca493 40%,
        #fff 40%,
        #fff 60%,
        #336d62 60%,
        #2a5b52 100%);
    height: 320px;
    width: 320px;
    z-index: -2;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    left: -10px;
  }
}

/* Start of: Media Query Breakpoints */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

  h1 {
    display: none;
  }

  .container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    height: 300px;
    width: 300px;
    position: relative;
    transform: scale(1);
  }

  .circle {
    background-color: #010f1c;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .gradient-circle {
    background: conic-gradient(#55b7a4 0%,
        #4ca493 40%,
        #fff 40%,
        #fff 60%,
        #336d62 60%,
        #2a5b52 100%);
    height: 320px;
    width: 320px;
    z-index: -2;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    left: -10px;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 400px) {

  #blank {
    display: none;
  }

  #invert {
    display: none;
  }

  .music_toggle,
  #music {
    position: absolute;
    bottom: 2%;
    width: 100px;
  }

  #ocean {
    z-index: 500;
    position: absolute;
    left: 1%;
    bottom: 3%;
    width: 66px;
    height: 66px;
  }

  #forest {
    z-index: 500;
    position: absolute;
    right: 1%;
    bottom: 3%;
    width: 66px;
    height: 66px;
  }

  .pointer_balls,
  #pointer_balls {
    display: inline-block;
    text-align: center;
    position: absolute;
    right: 1%;
    bottom: 2%;

  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {}

/* End of: Media Query Breakpoints */