/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Apply a background color and text color to the header */
header {
    background-color: #0084EF;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

/* Style the title with a custom font */
h1 {
    font-size: 36px;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif; /* Replace 'Your Custom Font' with the desired font name */
}

/* Create a container to center the content and add some padding */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Make the header responsive */
@media screen and (max-width: 768px) {
    header {
        padding: 20px 0;
    }
    h1 {
        font-size: 24px;
    }
}

/* Style the navigation bar */
nav {
    background-color: #333;
    font-family: Arial, sans-serif; /* Replace 'Your Custom Font' with the desired font name */
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

nav li {
    margin: 0 10px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

/* Change link color on hover */
nav a:hover {
    color: #0084EF;
}

/* Style the main content area */
main {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 0px; /* Add margin to prevent overlap with the footer */
}

#player-and-chat-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    background-color: #4d4d4d;
}

#player {
    flex: 3; /* Player takes a bigger % of the container's width */
    height: 85vh; /* Minimum height for the player */
    overflow: hidden; /* Hide overflow content if any */
}

#chat {
    flex: 1; /* Chat takes a smaller % of the container's width */
    height: 85vh; /* Minimum height for the chat */

    
}

/* Style the footer */
footer {
    background-color: #333;
    font-family: 'Your Custom Font', Arial, sans-serif; /* Replace 'Your Custom Font' with the desired font name */
    color: #fff;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    position: relative; /* Remove fixed positioning */
}

/* mobile stuff */
/* Mobile - Stacked Layout */
@media screen and (max-width: 600px) {
    #player-and-chat-container {
        display: block;
    }

    #player {
        width: 100%;
        height: 250px !important;
    }

    #chat {
        width: 100%;
        height: 350px !important;
    }
}

/* Small Screens - Slightly Smaller Heights */
@media screen and (max-width: 748px) {
    #player {
        height: 60vh;
    }

    #chat {
        height: 68vh;
    }
}

/* Medium Screens - Adjust Heights */
@media screen and (max-width: 1077px) {
    #player {
        height: 65vh;
    }

    #chat {
        height: 73vh;
    }
}

/* Large Screens - Desktop Layout */
/*@media screen and (min-width: 1600px) {
    #player-and-chat-container {
        display: flex;
    }

    #player {
        width: 75%;
        height: 74vh;
    }

    #chat {
        width: 25%;
        height: 74vh;
    }
}*/



/*random bullshit yadadadada*/

