
/************************************
MASTER LAYOUT
************************************/
body  {
  margin: 0;
  font-family: 'Fjalla One', sans-serif;
  color: #232323;
}

main {
  align-items: center;
  box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
  display: flex;
  justify-content: center;
  margin: auto;
  max-width: 850px;
}

@media screen and (min-width: 1600px) {
  main {
    max-width: 1200px;
  }
}

img {
  width: 100%;
}
a:hover, button:hover {
  cursor: pointer;
}
/************************************
CIRCLE STYLES
************************************/ 
#wrapper  {
  margin: auto;
  height: 100vh;
  padding: 1% 0;
}
  
.circle {
  width: 0px;
  height: 0px;
  border-right: 60px solid transparent;
  border-top: 60px solid;
  border-left: 60px solid;
  border-bottom: 60px solid;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;

  position: relative;
  margin: 1%;
  float: left;
}

.circle p {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

button {
  position: fixed;
  background-color: white;
  border-radius: 60px;
  border: none;
  box-shadow: rgba(1,1,1,.1) 6px 2px 16px 0px, rgba(1,1,1,.01) -6px -2px 16px 0px;
  font-family: 'Fjalla One', sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
  margin: auto;
  padding: 1.2rem 3rem;
  text-transform: uppercase;
  z-index: 100;
}

@media screen and (min-width: 1400px) {
  button {
    font-size: 2.3rem;
  }
}

button:hover {
  box-shadow: rgb(204, 219, 232) 4px 4px 7px 2px inset, rgba(255, 255, 255, 0.5) -4px -4px 7px 2px inset;
  transition: 150ms;
  transform: scale(0.999);
  transition: 350ms;
}
button:active {
  background: #eff7fa;
  box-shadow: rgb(204, 219, 232) 2px 2px 5px 3px inset, rgba(255, 255, 255, 0.5) -2px -2px 5px 3px inset;
}
/************************************
SIDEBAR STYLES
************************************/ 
.sidebar {
  background-color: rgb(255,255,255);
  border-radius: 10px;
  bottom: 0;
  box-shadow: rgba(1,1,1,.1) 6px 2px 16px 0px, rgba(1,1,1,.01) -6px -2px 16px 0px;
  height: 80px;
  padding: 0;
  position: fixed;
  margin: auto;
  width: 100%;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: center;
  z-index: 100;
}
#refresh, #home, #audio {
  height: 30px;
  width: 30px;
  align-self: center;
  padding: 20px;
}
#refresh:hover, #home:hover, #audio:hover {
  transform: scale(1.09);
  transition: 200ms;
}
#refresh:hover {
  transform: rotate(360deg);
  transition: 500ms;
}

@media screen and (min-width: 1200px) {
  .sidebar {
    bottom: 7rem;
    height: 500px;
    width: 100px;
    left: 0;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
  }
  #refresh, #home, #audio {
    height: 60px;
    width: 60px;
  }
  #refresh:active, #home:active, #audio:active {
    transform: scale(.9);
  }
}