section {
    margin-bottom: 100px;
}

body {
    font-family: 'Dark Potion 27', sans-serif; /* Optional: A clean default font */
    margin: 0;
    min-height: 100vh;
}

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

.grass-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/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: linear-gradient(90deg, rgba(0,0,0,0.75),rgba(0,0,0,0.25), rgba(0,0,0,0.75)), url('/images/wide-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 {
    display: block;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 5px solid var(--curious);
    border-radius: 3px;
    border-color: var(--motif);
    color: var(--motif);
    background-color: black;
    font-size: 24px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Dark Potion 27', sans-serif;
    cursor: pointer;
}

.glow {
    filter: drop-shadow(0px 0px 15px white);
}

.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;
}