* {
  margin: 0;
  padding: 0;
  cursor: url(images/modernMousePointerPNG.png), auto;
}

:root {
  /* Multiplying each rem value 10x */
  font-size: 62.5%;

  /* Body Colors */
  --text-body-color: rgb(37, 37, 216);
  --bg-body-color: hsl(0,0%,100%);

  /* Icons Content Colors */
  --primary-icons-color: hsla(240, 6%, 21%, 1);
  --secondary-icons-color: hsl(0,0%,100%);

  /* Icons Background Colors */
  --primary-bg-icons-color: hsl(240,9.1%,89.2%);
  --secondary-bg-icons-color: hsl(193.9,97.5%,31.2%);
}

body {
  display: flex;
  background-color: rgb(255, 255, 255);
  font-family: 'Varela Round', sans-serif;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}

main {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: row;
  margin-left: 20rem;
  margin-right: 20rem;
  gap: 10rem;
}

.spani {
  padding-left: 1.2rem;
}

#timer {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12.6rem;
  color: var(--text-body-color);
  background: -webkit-linear-gradient(rgb(0, 89, 255), rgb(255, 0, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

button {
  border: none;
  background-color: transparent;
}

#controls {
  gap: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5rem;
}

#soundSelector {
  width: 32rem;
  height: 33.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
  flex-direction: row;
  flex-wrap: wrap;
}

#soundSelector svg {
  background-color: var( --primary-bg-icons-color);
  max-width: 44px;
  max-height: 56px;
  padding: 4.8rem;
  border-radius: 3rem;
  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.pause {
  transform: rotate(90deg);
}

.pauseHideButton {
  display: none;
}

.reverseTimerSVG {
  transform: scale(1.1);
}

.reverseTimerSVG:hover {
  transform: scale(1.2);
}

@media (max-width: 815px) {
  main {
    display: block;
    width: 32rem;
    height: 33.6rem;
    align-items: center;
    justify-content: space-evenly;
  } 
   #soundSelector {
     margin-top: 2rem;
  }
  body {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: -7rem;
}
   #timer {
     font-size: 11.6rem;
  }}