/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


body {
  font-size: 30px;
}



/* Make sure the page background covers the entire viewport */
html, body {
    margin: 0;           /* remove default spacing */
    padding: 0;          /* remove default padding */
    width: 100%;         /* full width */
    height: 100%;        /* full height */
    overflow-x: hidden;  /* prevent horizontal scroll */
    background-color: #000; /* or your desired background color */
    background-image: url('your-background.jpg'); /* if using image */
    background-size: cover; /* cover entire screen */
    background-position: center;
    background-repeat: no-repeat;
}


body{
  background-image: url(homebackground.png);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
}






.navbar ul{
    list-style-type: none; /*Removed the bullet points from list*/
    background-color:  navy; 
    padding: 0px;
    margin: 0px;
    overflow: hidden;
    opacity: .7;
}
.navbar a{ /*the color of the text*/
    color: white;
    font-family: Times, cursive;
    text-decoration: none; /*removes underline*/
    padding: 15px;
    display: block;
    text-align: center;
}
.navbar a:hover{
    background-color: darkgray;
}
.navbar li{
    float: left;
}


.spotify-playlist   iframe {
  display:block;
  margin: 0 auto;
  width: 85%;
  max-width: 900px;
  height: 352px;
  border-radius: 12px;
}
 



