body {
    background-image: url('./images/Dark-Smiles-BG3.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    text-align: center;
    color: #000;
    background-color: #f5f8f0;
}

.music-player,
.music-player2 {
    background-color: #477076;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 500px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.music-player { top: 800px; }
.music-player2 { top: 215%; transform: translate(-50%, -50%); }

audio {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #477076;
    padding: 10px;
    z-index: 1000;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin: 5px 0;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
}

li:hover {
    background-color: #f0f0f0;
}

.download-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 12px;
    color: #fff;
    background-color: #87a9ad;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.download-button:hover {
    background-color: #000;
}

.available-text {
    margin: 0;
    font-size: 14px;
    letter-spacing: 1.56px;
    color: #000;
    text-transform: uppercase;
    opacity: 1;
    border: 3px solid #000;
    padding: 0.5vw 1vw;
    line-height: 1;
}

a {
    text-decoration: none;
}

a:hover {
    opacity: 0.5;
}

/* Mobile background */
@media only screen and (max-width: 767px) {
    body {
        background-image: url('./images/Dark-Smiles-BG3.gif');
        justify-content: flex-start;
    }

    .bottom-left-div, .bottom-right-div {
        display: block;
        position: static;
        width: 100%;
        padding: 20px;
        top: 700px;
        text-align: center;
        background-color: rgba(0, 0, 0, 0.0);
        margin-bottom: 500px;
    }

    .available-text {
        padding: 20px;
        font-size: 25px;
        color: #fff;
        background-color: rgba(0, 0, 0, 0.8);
        border: 3px solid #fff;
    }

    .music-player {
        width: 400px;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        top: 200%;
        transform: translate(-50%, -50%);
    }
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    padding: 10px 20px;
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

#home {
    padding-top: 50px;
}

#home .spotify {
    max-width: 50%;
}

#about {
    background-color: rgba(0, 0, 0, 1.0);
    width: 100%;
}

.logo-container {
    position: absolute;
    top: 18px;
    width: 100%;
    text-align: center;
    padding-top: 20px;
}

.logo {
    max-width: 100%;
    height: auto;
    max-height: 150px;
}

.social-links {
    position: relative;
    top: 130px;
}

nav ul {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    font-family: myFirstFont;
    font-size: 25px;
    color: #fff;
    opacity: 0.8;
}

nav ul li a:hover {
    opacity: 0.5;
}

main {
    padding-top: 80px;
}

section {
    padding: 60px 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

td {
    padding: 10px;
    vertical-align: top;
}

table td img {
    max-width: 100%;
    height: auto;
    display: block;
}

.bottom-left-div, .bottom-right-div {
    position: absolute;
    bottom: 50px;
    width: 400px;
    background-color: rgba(0, 0, 0, 0.0);
    color: #fff;
    text-align: center;
    padding: 10px;
    z-index: 1000;
}

.bottom-left-div { left: 0; }
.bottom-right-div { right: 0; }

footer {
    padding: 0;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    bottom: 0;
    color: #fff;
}

@font-face {
    font-family: myFirstFont;
    src: url('fonts/BebasNeue.otf');
}
