/***********************************
***                              ***
***      MAIN STYLES SHEET       ***
***                              ***
***********************************/

  html, body {
    height: auto;

    overflow-x: hidden;
    overflow-y: auto;

    padding: 0;
    margin: 0;

    font-size: 1rem; /* overall default font size */
  }

  button {
    padding: 0;
    margin: 0;

    font: inherit;
    color: inherit;
  }

/*** END MAIN STYLES ***/

/****************************************************************************************************/

/************************************
***                               ***
***  *** BACKGROUND ELEMENTS ***  ***
***                               ***
************************************/

  /*** background element class ***/
  .page_background {
    position: fixed;
    top: 0;
    left: 0;

    overflow: hidden;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    transition: opacity 1.5s ease;
  }
  #page_bcg_1 {
    z-index: -2;
    opacity: 1;
  }
  #page_bcg_2 {
    z-index: -1;
    opacity: 0;
  }
  /*** if a background is faded use this ***/
  .page_fader {
    background: rgba(0, 0, 0, 0.6);

    position: fixed;
    top: 0;
    left: 0;

    z-index: 400;

    overflow: hidden;
  }

/*** END BACKGROUND ELEMENTS ***/

/****************************************************************************************************/

/************************************
***                               ***
***    *** HEADER ELEMENTS ***    ***
***                               ***
************************************/

  /*** button to toggle the nav bar ***/
  .nav_toggle {
    display: none;
  }

  /*** title element wrapper on the nav bar ***/
  .nav_title {
    display: none;
  }

  /*** entire header wrap ***/
  header {
    width: 100%;
    height: 100px;

    z-index: 1000;

    position: fixed;
    top: 0;
    left: 0;

    background-image: url('images/nav_background.gif');
    background-position: center;
    background-size: auto 150%;

    background-color: #545454;
    box-shadow: 0 2px 2px rgb(250, 249, 235, 0.5),
                0 4px 3px rgb(250, 249, 235, 0.3),
                0 6px 4px rgb(250, 249, 235, 0.1);

    align-items: center;
    justify-content: space-between;

    box-sizing: border-box;

    padding: 0 2rem;
  }

  /*** server status ***/
  header p {
    position: relative;

    padding: 0.75rem 1.5rem;
    margin: 0;
  }

  /*** login link element | inside of nav ul ***/
  .login_link {
    margin-left: auto;

    background: linear-gradient(to bottom, #ffb100, #f9A603);

    border-radius: 4px;

    box-shadow: 0 0 2px 1px black,
                0 0 4px 2px #faf9eb;
    ;
  }
  .login_link a {
    color: black;

    text-shadow: none;
  }

  /*** nav wrapper ***/
  nav  {
    display: flex;
    position: static;
    transform: none;

    width: 100%;

    padding: 0 0 0 2rem;
    margin: 0;

    list-style-type: none; 
  }

  /*** nav bar list ***/
  nav ul {
    box-sizing: border-box;
    padding: 0;
    margin: 0;

    list-style-type: none;

    display: flex;
    width: 100%;
  }

  /*** nav bar item wraps ***/
  nav ul li {
    box-sizing: border-box;
  }

  /*** text / link elements inside nav ***/
  header a {
    display: block;

    box-sizing: border-box;

    font-size: 1.5rem;

    padding: 0.75rem 1.5rem;
    text-shadow: 0 0 16px black;
  }

  /*** all font colors on the header ***/
  header a, header p {
    color: #faf9eb;

    text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);

    font-weight: bold;

    white-space: nowrap;

    text-decoration: none;
  }
  /* hovered links */
  nav ul li a:hover {
    color: #f5d43e;
  }
  /* for current links */
  nav ul li a.active_link { 
    color: #f5d43e;

    background: linear-gradient(to bottom, #335155, #283f42);

    border-radius: 4px;

    box-shadow: 0 0 2px 1px black,
                0 0 4px 2px #faf9eb;
  }

/*** END HEADER ELEMENTS ***/

/****************************************************************************************************/

/************************************
***                               ***
***     *** MAIN ELEMENTS ***     ***
***                               ***
************************************/

  main {
    padding: 100px 2rem 0 2rem;
  }

  /*** title element wrapper | visible over 960px ***/
  .main_title {
    padding: 2rem 0 0 0;

    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.9))
            drop-shadow(0 4px 4px rgba(0,0,0,0.5));

    white-space: nowrap;
  }
  /*** main title tile ***/
  .main_title h1 {
    font-size: 7rem;

    margin-block: 0;

    line-height: 0.9;
  }
  /*** main title sub title ***/
  .main_title h2 {
    font-size: 3rem;

    margin-block: 0;
  }

  /*** the center label ***/
  .center_label {
    text-align: center;

    width: auto;

    font-weight: bold;

    padding: 0.5rem 2rem;

    border: 1px solid black;

    text-shadow: 0 1px 3px rgba(0, 0, 0, 1);

    border-radius: inherit;

    font-size: 1.75rem;

    overflow: hidden;

    white-space: nowrap;
  }

  /*** wrap for server info items ***/
  #server_status_wrap {
    padding: 0 0 0 4px;
  }

  /*** server info items ***/
  .server_status_item {
    padding: 0 8px;
    margin: 0;

    line-height: 1;

    font-size: 1.5rem;

    white-space: nowrap;

    font-weight: 500;
  }

  /*** the last updated text ***/
  #last_updated {
    padding: 1rem 0;
    margin: 0;

    font-size: 0.75rem;
  }

  /*** the entire wrapper for server details ***/
  #server_details_wrap {
    height: 180px;
  }

  /*** all wrappers inside index ***/
  main .wrapper {
    line-height: 0;
  }

  /*** server images ***/
  main .wrapper_inner img {
    border-right: 1px solid black;
  }

  /*** current player/announcement lists on index ***/
  .player_list, #announcement_list {
    padding: 0 1rem 2rem 1rem;
    margin: 0;

    font-size: 1.25rem;

    list-style-type: none;
  }

  /*** current player list on index ***/
  .player_list {
    user-select: none;

    display: flex;

    padding: 1rem;
    margin: 0 0 1rem 0;
    box-sizing: border-box;

    flex-wrap: wrap;

    gap: 1rem;

    width: 90%;

    border-radius: inherit;
  }

  .player_list li {
    display: flex;

    justify-content: center;
    align-items: center;

    padding: 8px;

    border-radius: inherit;

    box-shadow: 0 0 1px 2px rgba(0, 0, 0, 0.5),
                0 0 2px 4px rgba(0, 0, 0, 0.1);    
  }

  .player_list li p {

    margin: 0;
    padding: 0 0 0 1rem;
    color: black;

  }
  /*** players actual face image ***/
  .mc-face {
    aspect-ratio: 1 / 1;

    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.4),
                0 0 2px 2px rgba(0, 0, 0, 0.1);
  }

  #announcements_wrap p {
    color: #f4d753;

    display: flex;

    justify-content: center;
    align-items: center;
  }
  .announcement {
    padding: 0 0 1rem 0;
    margin: 0;
  }
  .announcement a:link, .announcement a:visited {
    color: #f4d753;
    text-decoration: none;
  }
  .announcement a:hover {
    text-decoration: underline;
  }
  #player_count_meter {
    width: 80%;
    height: 1rem;

    margin: 0;
    padding: 0 0 0 8px;
  }
  
  main meter::-webkit-meter-optimum-value {
    background: #4caf50;
  }

  main meter::-webkit-meter-bar {
    background: #545454;
  }

/*** END MAIN ELEMENTS ***/

/****************************************************************************************************/

/************************************
***                               ***
***   *** SERVER ABOUT STUFF ***  ***
***                               ***
************************************/

  #about_socials {
    margin: 48px 0 0 0;
    padding: 0 1rem;
    flex-wrap: wrap;
  }

  #about_socials img, #about_socials svg {
    border: none;
    padding-left: 1rem;
  }
  #about_socials a {
    font-size: 1.5rem;
    padding: 1.5rem 0;
  }
  #about_socials a:link, #about_socials a:visited {
    text-decoration: none;
    color: black;
  }
  #about_socials a:hover {
    text-decoration: underline;
  }

  .about_subtitle {
    text-align: left;
    padding: 1rem;
    font-size: 2.25rem;
    width: 100%;
    box-sizing: border-box;
    border-radius: inherit;
    flex: 1;
    margin: 0;
  }
  .about_text {
    margin: 0;
    padding: 1rem 2rem;
    font-size: 2rem;
    text-indent: 2rem;
  }

  .staff_wrapper {
    display: flex;
    width: auto;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1rem;
    background: linear-gradient(to bottom, #f4d753, #f5d43e);
    border-radius: inherit;
    box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.4),
            inset 0 0 0 1px rgba(0, 0, 0, 1);
  }
  .staff_wrapper img {
    padding: 0;
    margin: 0;
    box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.4),
          inset 0 0 0 1px rgba(0, 0, 0, 1);
  }
  .staff_wrapper p {
    padding: 16px 8px;
    margin: 0;
    font-size: 1.25rem;
    letter-spacing: 0px;
    white-space: wrap;
    overflow: hidden;
  }
  #about_staffWrap {
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem;
    margin: 0 1rem 1rem 1rem;
    box-sizing: border-box;
  }
  #about_modWrap {
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem;
    margin: 0 1rem 1rem 1rem;
    box-sizing: border-box;
  }
  #about_staffWrapOuter {
    padding: 0 1rem;
    margin: 1rem auto;
    box-sizing: border-box;
  }
  #about_staffWrapOuter h2, #about_modsWrapOuter h2 {
    text-align: center;
  }
  #about_modsWrapOuter {
    padding: 0 1rem;
    margin: 0 auto 1rem 0;
    box-sizing: border-box;
  }

/*** END SERVER ABOUT STUFF ***/

/****************************************************************************************************/

/************************************
***                               ***
*** *** SERVER SEASONS STUFF ***  ***
***                               ***
************************************/

  /* seasons list on the seasons page */
  #server_seasons_list {
    margin: 0;
    padding: 2rem 0;

    list-style-type: none;

    display: flex;

    flex-wrap: wrap;

    align-items: flex-start;
    justify-content: center;

    gap: 2rem;
  }

  #server_seasons {
    position: relative;
    overflow: visible;
  }

  /* wrappers of each season */
  .season_wrap {
    display: flex;

    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    text-align: center;

    width: 320px;

    aspect-ratio: 5 / 7;

    background-size: cover;
    background-position: center;

    box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.4),
              inset 0 0 0 1px rgba(0, 0, 0, 1);

    border-radius: 4px;

    padding: 1rem 2rem;

    box-sizing: border-box;
  }
  .season_wrap:hover {
    animation: hover_grow 0.2s forwards;
  }

  /*** text content inside of each season wrapper ***/
  .season_wrap p {
    margin: 0;
    padding: 0;

    text-shadow: 0 0 12px black;
  }

  /*** outter wrapper for clicked season detail ***/
  #season_expanded_wrapper_out {
    max-height: calc(100vh - 150px);

    box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.4),
                inset 0 0 0 1px rgba(0, 0, 0, 1);

    width: calc(100% - 4rem);
    height: auto;

    left: 50%;
    top: 125px;

    padding: 0;

    transform: translate(-50%, 0);

    position: fixed;

    z-index: 1000;

    box-sizing: border-box;

    border-radius: inherit;
  }

  /*** inner wrapper for clicked season ***/
  #season_expanded_wrapper_in {
    height: auto;

    box-sizing: border-box;

    border: 1px solid black;

    margin: 0;
    padding: 50px 1rem 2rem 1rem;

    overflow-y: auto;
    overflow-x: hidden;

    border-radius: inherit;
  }

  /* Chrome, Edge, Safari */
  #season_expanded_wrapper_in::-webkit-scrollbar {
    width: 16px;
  }

  /* draggable scrollbar */
  #season_expanded_wrapper_in::-webkit-scrollbar-thumb {
    border-radius: 0 4px 4px 0;

    background: #666;
  }

  /* scrollbar track */
  #season_expanded_wrapper_in::-webkit-scrollbar-track {
    background: #222;
  }


  /*** normal text content inside the wrapper ***/
  #season_expanded_wrapper_out p {
    font-size: 2rem;

    color: #faf9eb;

    margin: 0;
    padding: 1rem;

    box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.4),
                inset 0 0 0 1px rgba(0, 0, 0, 1);
  }

  .current_season_title {
    text-align: center;

    width: auto;

    font-weight: bold;

    padding: 0.5rem 2rem;

    border: 1px solid black;

    text-shadow: 0 1px 3px rgba(0, 0, 0, 1);

    border-radius: inherit;

    font-size: 2.25rem;

    overflow: hidden;

    white-space: wrap;
  }

  .current_season_details_wrapper {
    width: 100%;

    box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.4),
                inset 0 0 0 1px rgba(0, 0, 0, 1);

    padding: 1rem;

    border-radius: inherit;

    box-sizing: border-box;  

    overflow: hidden;

    flex-wrap: wrap;

    gap: 1rem;
  }

  #seasons .current_seasonDetails_titles {
    font-size: 2rem;

    width: auto;

    margin: 1rem auto 1rem 0;

    border-radius: inherit;

    text-align: center;

    padding: 0.5rem 2rem;

    text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);

    box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.4),
            inset 0 0 0 1px rgba(0, 0, 0, 1);
  }

  .current_seasonDetails_listDetails {
    border-radius: inherit;
    padding: 0 1rem;
    margin: 0 0 0 1rem;
    color: black;
  }

  .current_seasonDetails_listTitles {
    font-size: 1.5rem;

    width: auto;

    white-space: nowrap;

    margin: 0;

    border-radius: inherit;

    text-align: center;

    padding: 1rem; 

    box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.4),
                inset 0 0 0 1px rgba(0, 0, 0, 1);
  }

  #current_season_title {
    width: auto;
  }

  #current_season_wrapper_inner {

    padding: 0 1rem 1rem 1rem;

  } 

  .current_players_wrapper {
    display: flex;
    width: auto;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1rem;
    border-radius: inherit;
    box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.4),
            inset 0 0 0 1px rgba(0, 0, 0, 1);
  }

  .current_players_wrapper img {
    padding: 0;
    margin: 0;
    box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.4),
          inset 0 0 0 1px rgba(0, 0, 0, 1);
    max-width: 128px;
  }
  .current_players_wrapper p {
    padding: 0 8px 16px 8px;
    margin: 0;
    font-size: 0.8rem;
    letter-spacing: 0px;
    white-space: wrap;
    overflow: hidden;
  }


  #seasons .members_title {
    text-align: center;

    padding: 1rem;

    font-size: 2rem;

    margin: 2rem 0 0 0;
  }

  /*** season deetail player list ***/
  #season_expanded_wrapper_in ul {
    list-style-type: none;

    display: flex;
    flex-wrap: wrap;

    gap: 2rem;
    line-height: 1rem;

    box-sizing: border-box;

    padding: 1rem;
    margin: 0;

    box-shadow:   inset 0 0 1px rgba(255,255,255,0.15),
                  inset 0 0 12px rgba(0,0,0,0.35),
                  inset 0 0 24px rgba(0,0,0,0.2),
                  0 0 5px rgba(0,0,0,1);
  }

  /*** season detail players list player wrappers ***/
  #season_expanded_wrapper_in ul li {
    padding: 4px;

    font-size: 1.25rem;
  }

  /*** season details button closer ***/
  #close_seasons {
    width: auto;
    height: auto;

    position: fixed;

    padding: 0 0.5rem;
    margin: 0;

    top: 1rem;
    right: 50%;

    transform: translateX(50%);
  }

  /*** season titles wrappers ***/
  .season_content {
    background: linear-gradient(to bottom, rgba(80, 127, 134, 1), rgba(51, 85, 73, 1));

    box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.4),
              inset 0 0 0 1px rgba(0, 0, 0, 1);

    border-radius: inherit;

    padding: 16px 12px;
  }

  .season_wrap .season_name {
    font-size: 1.5rem;
    font-weight: 600;
  }

  .season_wrap .season_date {
    font-size: 1.25rem;
    font-weight: 500;
  }

  .img_viewer {
    width: 100%;
    max-width: 960px;
    overflow: hidden;
    position: relative;

    box-sizing: border-box;

    margin: 48px auto 0;

    box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.4),
            0 1px 0 6px #f5d43e,
            0 3px 4px 8px rgba(0, 0, 0, 0.6),
            inset 0 1px 0 1px rgba(0, 0, 0, 0.5);
  }

  .img_track {
    display: flex;
    transition: transform 0.4s ease;

    width: auto;
    aspect-ratio: 16 / 9;

    padding: 0;
    margin: 0;
  }
  .slide {
    min-width: 100%;
    object-fit: fill;
  }
  .season_pictures_Btn {
    position: absolute;

    font-size: 1.5rem;

    padding: 0.5rem;

    top: 50%;
    transform: translateY(-50%);
    z-index: 400;
  }
  .btn_next {
    right: 4px;
  }
  .btn_prev {
    left: 4px;
  }

/*** END SERVER SEASONS STUFF ***/

/****************************************************************************************************/

/**************************************
***                                 ***
*** *** SERVER MINIGAMES STUFF ***  ***
***                                 ***
**************************************/

  #games main {
    height: auto;
  }
  #games_list_wrapper {
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1.5rem;
    white-space: wrap;
  }
  .game_thumbnail_wrap {
    width: 320px;
    min-width: 320px;
    aspect-ratio: 5 / 7;

    border-radius: inherit;
    text-align: center;
    overflow: hidden;

    box-shadow:       0 0 3px 1px rgba(0, 0, 0, 0.5),
                    0 0 5px 2px rgba(0, 0, 0, 0.2),                      
              inset 0 0 3px 1px rgba(0, 0, 0, 0.6);
  }
  .game_thumbnail_wrap:hover {
    animation: hover_grow .2s forwards;
  }

  .game_thumbnail_wrap p {
    padding: 0 1rem;
  }

  .game_thumbnail_wrap svg {
    margin: auto 0;
  }
  .game_list_title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .game_list_description {
    font-size: 1.3rem;
  }
  .game_locked_title {
    font-size: 1.25rem;
  }
  .minigame_play_button {
    width: 50%;
    margin-top: auto;
    margin-bottom: 1rem;

  }

  #game_popout_wrapper {

    position: absolute;

    z-index: 1000;

    width: 1280px;
    aspect-ratio: 16 / 9;

    top: 55%;
    left: 50%;

    background: black;

    display: none;

    animation: center_grow 0.5s forwards;

  }

  #close_minigame_button {
    padding: 0;
    margin: 0;

    aspect-ratio: 1 / 1;
  }

/*** END MINIGAMES STUFF ***/

/****************************************************************************************************/

/************************************
***                               ***
***   *** FORUM PAGE STUFF ***    ***
***                               ***
************************************/

  #forum main {
    height: 100%;
  }

  #forum_wrapper_out p {

    font-size: 2rem;

    text-align: center;

    padding: 1rem 0;

  }

  #forum_wrapper_out svg {
    padding: 1rem;
    margin: 0;
  }

/*** END FORUM STUFF ***/

/****************************************************************************************************/

/************************************
***                               ***
***  *** LOGIN/REGISTER STUFF *** ***
***                               ***
************************************/

  /*** PAGE WRAPPER TO LOGIN FORMS ***/
  #login main {
    height: 100%;
  }

  /*** WRAPPER TO THE LOGIN/REGISTER FORMS ***/
  #login_register {
    padding: 1rem 4rem;

    width: auto;
  }

  /*** login/create account title ***/
  .form_wrap h2 {
    font-size: 2rem;

    padding: 0 0 2rem 0;
  }

  .form_wrap h3 {
    font-size: 1.5rem;

    padding: 0 0 2rem 0;
  }

  .form_wrap input {
    height: 24px;
    padding: 4px;

    margin: 4px 0;
  }

  .form_wrap button {
    margin: 1rem auto;

    padding: 0 2rem;

    height: 24px;

    width: auto;
  }

  .form_wrap p {
    text-align: center;

    font-size: 1rem;

    padding: 0;

    margin: 1rem 0 0 0;
  }

  /*** wrapper for the passwords ***/
  .password_wrap {
    width: 100%;
    margin: 4px 0;
    padding: 0;

    display: flex;
  }

  .password_wrap input {
    margin: 0;

    flex: 1;
  }

  .password_wrap button {
    font-size: 0.75rem;

    padding: 0 4px;
    margin: 0;

    width: auto;
    height: 100%;
  }

  /*** wrapper for the login/create/reset page to notify the user ***/
  #login_popup_wrapper {
    position: absolute;

    z-index: 500;

    width: auto;

    padding-top: 50px;

    animation: fadeIn 0.5s forwards;
  }

  #login_popup_wrapper button {
    position: absolute;

    right: 1rem;
    top: 1rem;

    width: 32px;
    aspect-ratio: 1 / 1;
  }

/*** END LOGIN / REGISTER STUFF ***/ 

/****************************************************************************************************/

/************************************
***                               ***
***   *** ACCOUNT PAGE STUFF ***  ***
***                               ***
************************************/

  /*** PAGE WRAPPER TO USERS ACCOUNT ***/
  #account main {
    height: 100%;
  }

  #account_details {
    position: relative;
  }

  #account_details_wrap_out {
    flex-wrap: wrap;
    padding: 1rem;
    gap: 1rem;
  }

  #account_details_wrap_in {
    flex: 1;
    min-width: 256px;
  }

  #account_details_wrap_in select {
    flex: 1;
    margin: 0;
    padding: 1rem;
    font-size: 1.25rem;
    border: none;
  }
  #account_details_wrap_in select option {
    color: black;
  }

  #account_page_buttonWrap {
    margin-top: 1rem;
  }

  #account_page_buttonWrap button {
    font-size: 1rem;
    padding: 1rem 1.5rem;
    margin: 1rem;
  }

  #account_details p {
    margin: 0;
    padding: 1rem;
    flex: 1;
    font-size: 1.25rem;
    flex-wrap: nowrap;
    white-space: nowrap;
  }

  .account_info_pretext {

  }
  .account_info_posttext {
    margin-left: 8px;
  }

  #account_details_wrap_out img {
    width: 100%;
    max-width: 256px;
    border-radius: inherit;

    margin: auto;

    padding: 0.5rem;
    background: linear-gradient(to bottom, #f4d753, #f5d43e);
    box-shadow:       0 0 3px 1px rgba(0, 0, 0, 0.5),
                      0 0 5px 2px rgba(0, 0, 0, 0.2),                      
                inset 0 0 3px 1px rgba(0, 0, 0, 0.6);
  }

/*** END ACCOUNT PAGE STUFF ***/ 

/****************************************************************************************************/

/************************************
***                               ***
***    *** FOOTER ELEMENTS ***    ***
***                               ***
************************************/

footer {
  padding: 0;

  position: relative;

  z-index: 900;

  bottom: 0;
}

footer p {
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);

  font-style: italic;

  padding: 8px 12px;

  background: rgba(0, 0, 0, 0.1);

  box-shadow: 0 0 1px 4px rgba(0, 0, 0, 0.05);
}

/*** END FOOTER ELEMENTS ***/

/****************************************************************************************************/

/************************************
***                               ***
***    *** IMPORTED FONTS ***     ***
***                               ***
************************************/

  /* PIXEL BLOCK LETTERS */
  .press-start-2p-regular {
    font-family: "Press Start 2P", system-ui;
    font-weight: 400;
    font-style: normal;
  }
  /* HEADING TEXT */
  .basic-regular {
    font-family: "Basic", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  /* FANCY LOOKING FONT */
  .story-script-regular {
    font-family: "Story Script", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  /* NORMAL FONT | THIN */
  .fira-sans-thin {
    font-family: "Fira Sans", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  /* NORMAL FONT | REGULAR */ /* STANDARD SITE TEXT */
  .fira-sans-regular {
    font-family: "Fira Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  /* NORMAL FONT | BOLD */
  .fira-sans-bold {
    font-family: "Fira Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  /* stylistic font | BOLD */
  .cinzel-bold {
    font-family: "Cinzel", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
  }

/*** END IMPORTED FONTS ***/

/****************************************************************************************************/

/************************************
***                               ***
***    *** GLOBAL CLASSES ***     ***
***                               ***
************************************/
  .green_gradient_bcg {
    background: linear-gradient(to bottom, rgba(80, 127, 134, 1), rgba(51, 85, 73, 1)); 
  }
  .gray_gradient_bcg {
    background: linear-gradient(to bottom, #faf9eb, #d9d8cd); 
  }
  .grayer_gradient_bcg {
    background: linear-gradient(to bottom, #949494, #7a7a7a); 
  }
  .yellow_gradient_bcg {
    background: linear-gradient(to bottom, #f4d753, #f5d43e);
  }
  .hidden {
    display: none;
  }
  .column {
    flex-direction: column;
  }
  .display {
    display: flex;
  }
  .list_spacer {
    width: 80%;
    border-bottom: 1px solid currentColor;
    line-height: 1;

    padding: 0;

    margin: 0 auto 1rem auto;
  }
  .border_box {
    box-sizing: border-box;
  }
  .invisible {
    opacity: 0;
  }
  .fade_in_1s {
    animation: fadeIn 1s forwards;
  }
  .hoverGrow {
    animation: hover_grow 0.2s forwards;
  }

  .owner_class {
    background: linear-gradient(to bottom, #f4d753, #f5d43e);
  }
  .moderator_class {
    background: linear-gradient(to bottom, #306D29, #275a21);
  }
  .standard_class {
    background: linear-gradient(to bottom, #a0a0a0, #8d8d8d);
  }
  .disclaimer {
    font-size: 1.75rem;
    padding: 0 0 1rem 0;
    margin: 0;
  }

  /****************************************************************************************************/

  /*** POSITIONING ***/
    .centered {
      justify-content: center;
      align-items: center;
    }
    .centered_spaceEvenly {
      justify-content: space-evenly;
      align-items: center;  
    }
    .left_centered {
      justify-content: center;
      align-items: flex-start;
    }
    .left_spaceEvenly {
      justify-content: space-evenly;
      align-items: flex-start;
    }
    .left_flexStart {
      justify-content: flex-start;
      align-items: flex-start;
    }
    .flexStart_centered {
      justify-content: flex-start;
      align-items: center;
    }
    .flexEnd_centered {
      justify-content: flex-end;
      align-items: center;
    }
  /*** END POSITIONING ***/

  /****************************************************************************************************/

  /*** SPACING STUFF ***/
    .flexed {
      display: flex;
    }
    .fill_space {
      width: 100%;
      height: 100%;
    }
    .no_space {
      margin: 0;
      padding: 0;
    }
    .square {
      aspect-ratio: 1 / 1;
    }
  /*** END SPACING STUFF ***/

  /****************************************************************************************************/

  /*** ALL TEXT STUFF ***/
    .centered_text {
      text-align: center;
    }
    .underline_text {
      text-decoration: underline;
    }
  /*** END ALL TEXT STUFF ***/

  /****************************************************************************************************/

  /*** COLORS ***/
    .red {
      color: red;
    }
    .green {
      color: green;
    }
    .yellow {
      color: #f5d43e;
    }
    .offWhite_text {
      color: #faf9eb;
    }
    .yellow_gradient_txt {
      background: linear-gradient(to bottom, #f4d753, #f5d43e);

      -webkit-background-clip: text;
      background-clip: text;

      -webkit-text-fill-color: transparent;
        color: transparent;
    }  
  /*** END COLORS ***/

  /****************************************************************************************************/

  /*** MAX-WIDTHS ***/
    .max_720 {
      max-width: 720px;
    }
    .max_1280 {
      max-width: 1280px;
    }
  /*** END MAX-WIDTHS ***/

  /****************************************************************************************************/

  /*** ALL WRAPPERS ***/
    
    .wrapper_outer {  /*** OUTER SIDE OF MAIN WRAPPERS ***/
      width: 100%;

      margin: 2rem auto;

      box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.4),
                  0 1px 0 6px #f5d43e,
                  0 3px 4px 8px rgba(0, 0, 0, 0.6),
                  inset 0 1px 0 1px rgba(0, 0, 0, 0.5);

      background: linear-gradient(to bottom, #faf9eb, #d9d8cd);

      padding: 0.75rem;

      border-radius: 6px;

      box-sizing: border-box;
    }

    .wrapper_inner {  /*** INNER SIDE OF MAIN WRAPPERS ***/
      width: 100%;

      margin: 0;

      box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.4),
                  inset 0 0 0 1px rgba(0, 0, 0, 1);

      padding: 1px;

      border-radius: inherit;

      box-sizing: border-box;  

      overflow: hidden;
    }    

    .wrapper {  /*** STANDARD WRAPPER TO USE ***/
      flex: 1;

      align-self: stretch;

      border-radius: inherit;

      box-sizing: border-box;
    }
  /*** END ALL WRAPPERS ***/

  /****************************************************************************************************/

  /*** THE SERVERS ICON IMAGE ***/ 
    .server_icon {
      display: block;

      width: auto;
      height: 100%;
      aspect-ratio: 1 / 1;

      object-fit: contain;

      border-top-left-radius: inherit;
      border-bottom-left-radius: inherit;
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;

      box-sizing: border-box;
    }

/*** END GLOBAL CLASSES ***/

/****************************************************************************************************/

/************************************
***                               ***
***    *** GLOBAL KEYFRAMES ***   ***
***                               ***
************************************/

  /*** Grows the element down from the top ***/
  @keyframes growDown {
    from {
      transform: scaleY(0);
      opacity: 0;
    }

    to {
      transform: scaleY(1);
      opacity: 1;
    }
  }
  @keyframes hover_grow {
    from {
      transform: scale(1);
    }
    to {
      transform: scale(1.05);
      box-shadow: 0 0 1px 1px #f5d43e,
                  0 0 5px 2px rgba(245, 212, 62, 0.6),
                  0 0 5px 4px rgba(245, 212, 62, 0.3);
    }
  }
  @keyframes center_grow {
    from {
      transform: translate(-50%, -50%) scale(0);
    }

    to {
      transform: translate(-50%, -50%) scale(1);
    }
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

/*** END GLOBAL KEYFRAMES ***/


