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

:root {
  --fw-light: 300;
  --fw-normal: 400;
  --fw-semi: 500;
  --fw-bold: 700;
  --fs-h1: 1.25rem;
  --fs-h2: 1.75rem;
  --fs-body: 1rem;
  --fs-xl: 4rem;
  --clr-light: #fff;
  --clr-gray: #dee1e9;
  --clr-dark: #0e2e58;
  --clr-accent: #72879f;
  --clr-accent-dark: #0e2e58;
  --clr-accent-light: #8c52d4;
  --clr-bg-dark: #0e2e58;
  --clr-bg-light: #1c2537;
  
}


body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  background-image: url(../img/moon_surface_only.png);
  background-size: cover;
  color: var(--clr-light);
  min-height: 100vh;
}

h1, h2, h3 {
  line-height: 1;
}

a {
  color: var(--clr-light);
  text-decoration: none;
}


a:visited 
{
    text-decoration: none;
}

a:hover {
  color: var(--clr-accent-light);
}

.main-title {
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--clr-accent);
  letter-spacing: 2px;
  grid-column: 1 / -1;
}

.section-title {
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  margin: 0;
}



.pm-main-panel {
  background: var(--clr-bg-dark);
  border-radius: 25px;
  position: fixed;
  bottom: 0px;
  padding: 1em 1em 1em;
  margin: 1em;
  -moz-box-shadow: 0 0 30px 5px #555;
  -webkit-box-shadow: 0 0 30px 5px #555;
}


.pm-info {
	color: var(--clr-accent);
	font-size: var(--fs-h1);
    font-weight: var(--fw-bold);
}



.wwawwb-panel {
  background: var(--clr-bg-light);
  border-radius: 25px;
  text-align: center;
  color: var(--clr-gray);
  position: fixed;
  left: 25%;
  top: 3%;
  padding: 1em 1em 1em;
  margin: 1em;
  -moz-box-shadow: 0 0 30px 5px #555;
  -webkit-box-shadow: 0 0 30px 5px #555;
  
}

.earth {
	position: absolute;
	top: 5%;
	left: 10%;
}


.jukebox-panel{
	position: absolute;
	bottom: 35%;
	left: 30%;

	
}



.flying_zep {
	position: absolute;
	top: 25%;
	left: 50%;
}
 
 
.booth-panel {
	position: absolute;
	bottom: 35%;
	left: 7%;
}
 
 


@media all and (max-width: 768px){
	.wwawwb-panel  {
		display: none;
	}
}


