body {
  font-family: "Helvetica";
  align-items: center;
  text-align: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 1);
  color: white;
  text-decoration: none;
  margin: 0;
  padding: 14px;
  min-height: 100vh;
  background: url("https://wallpapers.com/images/hd/night-sky-background-a8b0ia6v7vmd3qs5.jpg");
  background-color:rgba(10,10,10,100);
  background-repeat: no-repeat;
  background-size: fit;
  background-position: center top -50px; 
}

h1 {
  margin-top: 100px;
  margin-left: 20px;
  text-align: left;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(5px);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  
}

main {
  margin-top: 90px;
}

.blocks {
  display: flex;
  text-align: center;
  gap: 15px;
  flex-direction: row;
  flex-wrap: wrap;
  row: 3;
  justify-content: space-evenly;
  align-items: center;
  margin: 10px;
}

 .content-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s ease-in-out;
  width: 220px; 
  height: 150px; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

 a {
   text-decoration: none;
    color: white;
}

.emoji {
  font-size: 50px;
  position: fixed;
  left: 2px;
  bottom: 75px;
}

.bgg {
  font-size: 120%;
  text-align: left;
  position: fixed;
  bottom: 100px;
  margin-left: 75px;
}

 .nm {
  font-size: 130%;
  text-align: left;
  position: fixed;
  bottom: 120px;
  margin-left: 60px;
}

.sm {
  font-size: 160%;
  text-align: left;
  position: fixed;
  bottom: 110px;
  margin-left: 60px;
}

.bg {
  font-size: 130%;
  text-align: left;
  position: fixed;
  bottom: 110px;
  margin-left: 80px;
}

.blurb {
  font-size: 90%;
  position: fixed;
  margin: 10px;
  top: 70px;
}

/*background music*/

#mute-btn {
  background: #6748b1;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(80,40,120,0.09);
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
#mute-btn:hover {
  background: #8f7cc3;
  transform: scale(1.05);
}


/* The navigation bar */
.navbar {
  text-decoration: none;
  color: #7952B3;
  list-style: none;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  margin-right: 10px;
  position:fixed;
  z-index:3;
}

nav {
  background-color: #7952B3;
  border-radius: 10px;
  height: 80px;
  width: 100%;
  position:fixed;
  z-index:2;
}

nav ul {
  float: right;
  margin-right: 20px;
}

nav ul li{
  display: inline-block;
  line-height: 80px;
  margin: 0 5px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding: 20px 12px;
  border-radius: 10px;
}

a.active, a:hover {
  background: #664796;
  transition: .5s;
}

.checkbutton {
  font-size: 30px;
  color: white;
  float: right;
  line-height: 80px;
  line-weight: 50px;
  margin-right: 30px;
  padding: 0 10px;
  cursor: pointer;
  display: none;
}

#chc {
  display: none;
}

@media (max-width: 1050px){
  nav ul li a {
    font-size: 16px;
  }
}

@media (max-width: 500px){
  .checkbutton {
    display: block;
  }
  ul {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #7952B3;
    border-radius: 13px;
    top: 80px;
    left: -100%;
    text-align: center;
    transition: all .5s;
    z-index: 5;
  }
  nav ul li {
    display: block;
    margin: 50px 0;
    line-height: 30px;
  }
  nav ul li a{
    font-size: 20px;
  }
  a:hover, a.active{
    background: none;
    color: #202d3b;
  }
  #chc:checked~ul {
    left: 0;
  }
}
