/* Import the Minecraft font */
@font-face {
    font-family: "Mojang";
    src: url("../fonts/Mojang-Regular.ttf") format("truetype");
    font-weight: normal;
    font-size: normal;
}

/* Import the Minecraft bold font */
@font-face {
    font-family: "Mojang";
    src: url("../fonts/Mojang-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

html, body {
    height: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

.main_container {
    min-height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
}

/* Sidebars */

/* Base styling for both sidebars */
.sidebar_left,
.sidebar_right {
    display: flex;
    width: 10vw;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: inset 0 4px 10px rgba(255,255,255,0.1);
}

.sidebar_left {
    background: linear-gradient(to right, #2C3E50, #34495E);
}

.sidebar_left::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.3), rgba(255,255,255,0));
    pointer-events: none;
}

.sidebar_right {
    background: linear-gradient(to left, #34495E, #2C3E50);
}

.sidebar_right::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(255,255,255,0.3), rgba(255,255,255,0));
    pointer-events: none;
}

.middle_container {
    width: 80vw;
}

.header_container {
    height: 25vh;
    width: 80vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Styling for the Title Card */
.title_card {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    height: 75%;
    width: 100%;
}

/* Styling for the text */
.title_card h1 {
    margin: 0;
    font-size: 2rem;
}

/* Styling for the Menu container */
.menu_container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 10px;
    width: 100%;
    max-width: 80vw;
}
.menu_container p {
    margin: 0;
}

/* Styling for the Menu Buttons */
.menu_container .menu_button {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.2rem;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s ease;
    font-family: "Mojang", monospace;
    word-spacing: 4px;
    font-size: 16px;
}

.menu_button a:link,
.menu_button a:visited,
.menu_button a:hover,
.menu_button a:active {
    color: #FFFFFF;
    text-decoration: none;
    font-family: "Mojang", monospace;
}

/* Styling for the body container */
.body_container {
    display: flex;
    width: 80vw;
    min-height: 75vh;
}


/* Content Container */
.content_container {
    width: 80vw;
    padding: 100px 60px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


/* This will be the colors for all the containers */

.header_bg_color {
    background-color: #2C2F33;
}
.header_text_color {
    color: #FFFFFF;
}

/*
.title_bg_color {
    background-color: #7289DA;
}
.title_text_color {
    color: #FFFFFF;
}
*/

.menu_bg_color {
    background-color: #23272A;
}

.menu_button_bg_color {
    background-color: #4CAF50;
}
.menu_button:hover {
    background-color: #45a049;
}
.menu_button_text_color {
    color: #FFFFFF;
}

.sidebar_left {
    background: linear-gradient(
        to right,
        #2C3E50,
        #34495E
    );
}
.sidebar_right {
    background: linear-gradient(
        to left,
        #2C3E50,
        #34495E
    );
}

.content_bg_color {
    /*background-color: #ECF0F1;*/
    background-color: #dddbdb;
}
.content_text_color {
    color: #2C3E50;
}