body {
    margin: 0;
    font-size: 28px;
    font-family: Arial, Helvetica, sans-serif;

    /* background color */
    background-color: #000;
    background-image: url('ass/bobby-bg.png'); /* sets the background image */
    background-size: cover; /* scales the image to cover the entire element */
    background-repeat: no-repeat; /* the image will not repeat */
  }
  
  .header {
    background-color: #000000;
    padding: 30px;
    text-align: center;
    color: rgb(78, 59, 59);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
  }
  
  #navbar {
    overflow: hidden;
    background-color: #333;
  }
  
  #navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  #navbar a:hover {
    background-color: #ddd;
    color: black;
  }
  
  #navbar a.active {
    background-color: #04AA6D;
    color: white;
  }
  
  .content {
    padding: 10px;
    width: 100%;
    color: rgb(202, 196, 196);
    bottom: 0px;
  }
  
  .sticky {
    position: fixed;
    top: 0;
    width: 100%;
  }
  
  .sticky + .content {
    padding-top: 60px;
  }
  .Music {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: Large;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #fff;
  }
  .Contact {
    position: absolute;
    top: 25%;
    padding-left: 15%;
    padding-right: 15%;
    width: auto;
    font-size: Large;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #fff;
}
#contact-form {
  /*width: 100%;*/
  width: 250px;
}

#contact-form label {
  display: block;
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 0.5em;
}

#contact-form input[type="text"], #contact-form textarea {
  width: 100%;
  padding: 0.5em;
  margin-bottom: 1em;
  border-radius: 0.5em;
  border: 1px solid #ccc;
}

#contact-form input[type="submit"] {
  background-color: #4CAF50;
  color: white;
  padding: 0.5em 1em;
  border: none;
  border-radius: 0.5em;
  cursor: pointer;
  font-size: 1.2em;
}

#contact-form input[type="submit"]:hover {
  background-color: #45a049;
}


.Bio{
  position: absolute;
  top: 25%;
  padding-left: 14%;
  padding-right: 14%;
  width: auto;
  font-size: Large;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #fff;
}


/* Add this class to the music div */
.music-container {
  position: relative;
}

/* Add this class to the actual music content */
.music-content {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: Large;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #fff;
}

/* Add this class to adjust the music content for mobile */
@media (max-width: 600px) {
  .music-content {
    top: 40%;
  }
}