section {
    margin-bottom: 100px;
}

body {
    margin: 0;
    padding-top: 1px; /* This fixes margin collaps, where the background image might leave space at the top of page before beginning */
    min-height: 100vh;
    background-color: black;
}

.indent {
    margin-left: 50px;
}

.page-margin {
    margin: 100px 50px 200px;  /* Adds space around the entire page */
    padding: 0; /* Resets any default padding */
}

.double-square-margin {
    width: min(800px, 50vh);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.grass-bg {
    background-image:  url('/images/bg/grass-bg.jpg');
    background-position: center;
    height: 100vh;
    width: 100vw;
    position: fixed;
    background-size: 540px;
    /* z-index usage is up to you.. although there is no need of using it because the default stack context will work. */
    z-index: -1; 
}

.studio-bg {
    background-image: url('/images/dark-studio-bg.jpg');
    background-position: center;
    height: 100vh;
    width: 100vw;
    position: fixed;
    background-size: 1080px 540px;
    /* z-index usage is up to you.. although there is no need of using it because the default stack context will work. */
    z-index: -1; 
    margin-top: 0px;
}

.skate-street-aftermath-bg {
    background: linear-gradient(90deg, rgba(0,0,0,0.75),rgba(0,0,0,0.25), rgba(0,0,0,0.75)), url('/images/skate-street-aftermath.jpg');
    background-position: center;
    height: 100vh;
    width: 100vw;
    position: fixed;
    background-size: 540px;
    /* z-index usage is up to you.. although there is no need of using it because the default stack context will work. */
    z-index: -1; 
}

* {
    background-color: transparent;
}

.text-shadow {
    background-color: rgba(0, 0, 0,0.25);
    filter: drop-shadow(0px 0px 10px black);
}

img {
    background-color: transparent;
}

.horizontal {
    display: flex; /* Use flexbox to align children horizontally */
    margin-left: auto;
    margin-right: auto;
    align-items: flex-start; /* Align items to the top */
    background-color: transparent;
}

.seamless-vertical { /* Use flexbox to align children vertically */
    display: flex;
    flex-direction: column;
    gap: 0px; /* Space between */
    background-color: transparent;
}


.center {
    display: block;
    margin-left: auto;
    margin-right: auto; 
    max-height: 90vh;
    max-width: 90vw;
    width: auto;
    height: auto;
    margin-bottom: 40px;
    background-color: transparent;
}

.button {
    width: fit-content;
    font-family: 'Dark Potion 27 Proportional', sans-serif;
    padding: 20px;
    margin: 20px auto;
    border: 5px solid #4df4fd;
    border-radius: 3px;
    border-color: #4df4fd;
    color: #4df4fd;
    background-color: black;
    font-size: 24px;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
    display: block;
}

.glow {
    box-shadow: 0 0 15px 5px #fff
}

.magenta-glow {
    box-shadow: 0 0 15px 5px #f0f
}

.yellow-glow {
    box-shadow: 0 0 15px 5px #ff0
    
}

.cyan-glow {
    box-shadow: 0 0 15px 5px #0ff
}

.room {
    width: 100%;
    aspect-ratio: 1/1;
    margin: 20px 0px;
}

.room-name {
    font-size: 15px;
    color: white;
    background-color: black;
    border: solid 3px white;
    margin: 0;
}

.profile-pic {
    width: 240px;
    height: 240px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0; /* Prevents the profile picture from shrinking */
    border: 5px solid;
}

.post-area {
    flex-grow: 1; /* Allows the post area to take up the remaining space */
    padding-bottom: 20px;
    margin: 0px 20px;
}

.user-style {
    border: 5px solid; /* Default border, customizable per user */
    border-left: 20px solid;
    border-bottom: 20px solid;
    margin-bottom: 40px; /* Adds space between each forum post */
    background-color: black;
}

.medium-purple-container {
    border: 5px solid var(--medium_purple);
    margin: 40px 0px 40px; 
    background-color: black;
    padding: 40px;
}

/* ========================== For including square oracle cards in posts =============== */
/* Cards can be titled whatever they want per post */


/* Holds both the card image and card text */
.post-card-container {
    width:200px;
    height: 200px;
    position: relative;
    margin: 0px 20px 20px;
    display: inline-block;
}

/* For card icons used in posts */
.post-card-image {
    width:200px;
    height: 200px;
    position: absolute;
    
}

/* For card icons used in posts, this is their title*/
.post-card-text {
    position: absolute;
    border: solid 3px white;
    background-color: black;
    width: fit-content;
    padding: 5px;
    font-size: 15px;
    color: white !important;
}

.post-card-image, .post-card-text {
    margin: 0px 20px 20px;
    display: inline-block;
}
/* Example
<div class="post-card-container">
    <img class="post-card-image">
    <p class="post-card-text">
</div>
*/

/* ================== Begin Basic Audio Player ==================== */

.wrapper {
    width: 90%;
    max-width: 700px;
    margin-left: 0px;
}

.song-name {
    color: var(--ruby);
    margin-bottom: 30px;
    margin-left: 20px;
    max-width: 700px;
}


/* ================== End Basic Audio Player ==================== */