body, html {
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    overflow-y: auto;
    overflow-x: auto;
}

a:link {
    color:blanchedalmond;
    text-decoration: none;
}
a:visited {
    color:blanchedalmond;
    text-decoration: none;
}
a:hover {
    color:mintcream;
    text-decoration:underline overline slateblue;
}
body {
    background-image: url('/img/background.jpeg');
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    box-sizing: border-box;
    min-height: 100vh; /* Ensure body has at least the height of the viewport */
}

.container {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 1000px;
    margin: 20px ; /* Add margin to the container */
    box-sizing: border-box;
}

.logo { 
    margin-bottom: -30px;
}

.headshot {
    display: block;
    margin: 0 auto 20px; /* Center the images and add spacing */
}

.logo {
    width: 50%;
}

.albumcover {
    width: 50%;
}

.headshot {
    width: 75%;
    border-radius: 50%;
}

.social-media {
    margin-bottom: 20px;
}

.bio {
    margin-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

.linkbox {
    width: 90%;
    min-height: 75px;
    max-height: 150px;
    margin: 25px auto 0px;
    background-color: grey;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: azure;
    text-decoration: none;
    border-radius: 25px;
    padding-left: 10px;
    padding-right: 10px;
}

.linkbox img {
    width: 7%;
    padding-right: 20px;
}

.section {
    margin-top: 100px;
}

.section h2 {
    color: rgb(217, 134, 255);
    margin-top: 50px;
    margin-bottom: -5px;
}

.linkbox:hover {
    background-color:SlateBlue;
    color: black;
}

.social-media a {
    margin: 0 10px;
    color: greenyellow;
    text-decoration: none;
    font-size: 1.6rem;
}

.social-media a:hover {
    text-decoration: underline;
}

.reviews {
    margin: 20px 0;
    padding-left: 10px;
    padding-right: 10px;
}

.reviews h2 {
    margin-bottom: 10px;
}

.photos {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.photos img {
    width: 30%;
}

li {
    align-items: center;
    list-style: none;
    display: inline;
}

ul {
    padding: 0;
    list-style-type: none;
    margin: 0;
}

.spotify-player {
    margin: 20px 0;
    width: 90%;
}

.youtube-video {
    margin: 20px 0;
    width: 90%;
    align-items: center;
}

@media (max-width: 480px) {

    body {
        background-color: rgba(0, 0, 0, 0.7);
        padding: 0;
        font-size: 1rem;
    }
    
    body h2, h1, p {
      padding: 0px 10px ;
    }

    .photos {
        display: block;
        justify-content: center;
        gap: 10px;
        margin: 20px 0;
    }

    li {
        align-items: center;
        list-style: none;
        display: block;
    }

    .photos img {
        width: 90%;
    }

    .logo {
        max-width: 75%;
        width: 75%;
        margin-bottom: -30px;
    }
  

    .spotify-player {
        margin: 20px 0;
        width: 90%;
        min-height: 50vh;
    }

    .headshot {
        max-width: 50%;
        width: 50%;    
    }

    .bio {
        margin-top: -40px;
    }

    .social-media a {
        font-size: 1.6rem;
        flex-direction: column;
        text-decoration: underline;        
    }

    .social-media {
        flex-direction: column;
    }

    .youtube-video {
        width: 100%;
    }
    .container {
        background-color: rgba(0, 0, 0, 0.7);
        padding: 0px;
        margin: 0px;
        border-radius: 0px;
        min-width: 100%;
        min-height: 100%;
    }
    .linkbox {
        width: 90%;
        min-height: 75px;
        max-height: 150px;
        margin: 20px auto 0px;
        background-color: grey;
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
        font-size: 1.2rem;
        color: azure;
        text-decoration: none;
        border-radius: 25px;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .linkbox img {
        width: 10%;
        padding-right: 0.4rem;
    }
    
    .section {
        margin-top: 100px;
        padding: 0px;
    }
    
    .section h1 {
        padding: 0rem 1rem;
    }

    .section h2 {
        color: rgb(217, 134, 255);
        margin-top: 50px;
        margin-bottom: -5px;
        padding: 0rem 1rem;
    }
    
    .linkbox:hover {
        background-color:slateblue;
        color: azure;
    }

}