body {
    width: 100%;
    min-height: 100vh;

    margin: 0;
    padding: 0;

    background-color: black;
    text-align: center;
    box-sizing: border-box;
}

.safehousebg {
    width: 100%;
    min-height: 100vh;

    background-image: url("images/Safehouse.png");
    background-size: cover;
    background-attachment: fixed;
}

.indexbg {
    width: 100%;
    min-height: 100vh;

    background-image: url("images/auction.png");
    background-size: cover;
    background-attachment: fixed;
}

.stereobg {
    width: 100%;
    min-height: 100vh;

    background-image: url("images/stereo.png");
    background-size: cover;
    background-attachment: fixed;
}

/* iOS doesn't support background-attachment: fixed */
@media (max-width: 768px) {
    .safehousebg,
    .indexbg,
    .stereobg {
        background-attachment: scroll;
    }
}


.music-player {
    max-width: 500px;
    width: 90%;

    margin: 20px auto;
    padding: 5px;
    border: 1px solid #4b4b4b;
    border-radius: 3px;

    color: rgb(255, 255, 255);
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    box-sizing: border-box;
}

audio {
    width: 100%;
}


.auctionlinks {
    font-family: sans-serif;
}

.social-icons {

    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    padding: 10px 10%;
}

.lastfm,
.steam {
    line-height: 0;
}

.lastfm img,
.steam img {
    width: 50px;
    height: 50px;
}


.safehousemain {
    border: #919191 solid 1px;
    border-radius: 12px;
    padding: 10px 20px;

    margin: 2% auto;
    max-width: 600px;
    width: 90%;

    text-align: center;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    background-color: RGBA(75, 75, 75, 0.5);
    box-sizing: border-box;
}


.roomtitle {
    text-align: center;
    color: white;
}

.page-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 110px;
    padding: 10px 5%;
    margin-top: 20px;
    clear: both;
}

.leavelink,
.musiclink,
.safehouselink {
    margin: 0;
}


.Title {
    color: white;
}

.index-cta {
    margin-top: 10%;
    padding-bottom: 40px;
    font-size: 1.1em;
}


a:link {
    color: green;
    background-color: transparent;
    text-decoration: none;
}

a:visited {
    color: rgb(181, 154, 255);
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color: red;
    background-color: transparent;
    text-decoration: underline;
}

a:active {
    color: yellow;
    background-color: transparent;
    text-decoration: underline;
}


.songcover1,
.songcover2,
.songcover3 {
    display: inline-block;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    max-width: 300px;
    width: 100%;
}

.songcover1 img,
.songcover2 img,
.songcover3 img {
    width: 100%;
    height: auto;
    display: block;
}

.songtext1,
.songtext2,
.songtext3 {
    margin-left: 2.5%;
}

.songlist {
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
    justify-content: center;
    align-items: flex-start;
    margin: 1% 2%;
}

.disclaimer {
    color: white;
}

h1 {
    color: white;
}
