body.home {
  background-image: url(https://www.elevenpointtwo.com/eleven-point-two-background.jpeg);
  background-color: black;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: top center;
  margin: 0;
}
body.music {
  background-color: black;
  background-repeat: no-repeat;
  background-attachment: fixed;  
  background-size: cover;
  margin: 0;
}
body.videos {
  background-color: black;
  background-repeat: no-repeat;
  background-attachment: fixed;  
  background-size: cover;
  margin: 0;
}
body.tour {
  background-color: black;
  background-repeat: no-repeat;
  background-attachment: fixed;  
  background-size: cover;
  margin: 0;
}
body.about {
  background-color: black;
  background-repeat: no-repeat;
  background-attachment: fixed;  
  background-size: cover;
  margin: 0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#home-body {
  margin:0;
  padding:0;
  height:100%;
}

.logo {
  display: block;
  margin: 0;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  float: right;
}

.logo a {
  color: white;
  text-decoration: none;
  font-size: 30px;
  font-family: Arial, Helvetica, sans-serif;
}

.logo a:hover {
  color: gray;
  transition: 0.3s;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: gray;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

.menu {
  color: white;
  font-size: 60px;
  cursor: pointer;
  margin-left: 10px;
}

.menu:hover {
  color: gray;
  transition: 0.3s;
}


@media screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
  font-size: 40px;
  top: 15px;
  right: 35px;
  }
}

@media screen and (max-width: 450px) {
  .logo a {
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  body.home {
    background-image: url(https://www.elevenpointtwo.com/eleven-point-two-mobile-background.jpeg);
  }
}

footer {
  color: white;
  position: relative;
  bottom: 0px;
  padding: 3px;
  width:100%;
  background:black;
  text-align: center;
  width: 100%;
}
.footnav a {
  text-decoration: none;
  color: white;
  font-size: larger;
  font-family: Arial, Helvetica, sans-serif;
}
.footnav a:hover {
  opacity: 50%;
}

iframe {
  display: block;
  margin:auto;
  padding-top: 10px;
  padding-bottom: 10px;
}

h1 {
    font-size: 100px;
    font-weight: bold;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
}

h2 {
    text-align: center;
    text-decoration: underline;
    font-size: 60px;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
  }

p2 {
    margin-left: 100px;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
  }

p3 {
    margin-left: 100px;
    text-align: center;
    text-decoration: underline;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
  }

.biography a {
  color: white;
  display: block;
}

.biography a:hover {
  color: gray;
  transition: 0.3s;
}


.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.about-photo {
    max-width: 300px;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.social a {
  text-decoration: none;
  padding: 5px;
  padding-top: 20px;
}

.social a:hover {
  opacity: 50%;
}

html, body {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

#lost {
  aspect-ratio: 16 / 9;
}
#dwstna {
  aspect-ratio: 16 / 9;
}
#midnightlive {
  aspect-ratio: 16 / 9;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-height: 100px;
  height: auto;
}

.modal-content img {
  width: 100%;
  height: auto;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

@media screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}