:root {
    --text-color: rgb(255, 215, 0);
    --text-color-main: rgb(255, 255, 0);
    --button-bg-color: rgb(31, 26, 0);
  }
  
  body {
    background-color: black !important;
    background-image: url('/assets/ship.png');
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    font-family: Georgia, 'Times New Roman', Times, serif;
  }
  
  .page-content {
    background-image: none !important;
    background-color: transparent !important;
    min-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
  }
  
  #root {
    margin: 0 !important;
    padding: 0 !important;
  }
  
  html,
  body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  
  .b-border {
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.6), 0 0 10px rgba(255, 200, 0, 0.5), 0 0 20px rgba(255, 180, 0, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  
    &:hover {
      box-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 15px rgba(255, 200, 0, 0.7), 0 0 25px rgba(255, 180, 0, 0.6);
    }
  }
  
  input
  {
    outline: none;
  }
  
  #grid
  {
    margin-bottom: 10px;
  }
  
  .grid-element {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }
  
  #login-section {
    background-color: rgb(0, 0, 0);
    display: flex;
    padding: 10px;
    width: 300px;
    flex-direction: column;
  }
  
  .login-element {
    padding: 2px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    width: 100%;
    height: 100%;
    gap: 20px;
    font-size: 12px;
    color: var(--text-color);
    font-weight: bold;
  }
  
  .login-element input {
    background-color: rgb(0, 0, 0);
    font-size: 14px;
    height: 30px;
    width: 100%;
    color: var(--text-color);
    border: none !important;
    text-indent: 5px;
  }
  
  .login-element input:focus {
    outline: none;
    border-color: rgb(94, 77, 47);
  }
  
  #login-button {
    width: 100%;
    height: 30px;
    background-color: rgba(0, 0, 0, .5);
    cursor: pointer;
    color: var(--text-color);
    margin: 0;
    margin-top: 5px;
  }
  
  #o2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  #logo-section {
    width: 500px;
    height: 250px;
    background-image: url('/assets/logo.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 10px;
    max-width: 100%;
    margin-left: -20px !important;
  }
  
  #info-section {
    background-color: rgb(0, 0, 0);
    padding: 10px;
    width: 250px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
  }
  
  .info-element {
    padding: 2px;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    gap: 20px;
    font-size: 12px;
    color: var(--text-color);
    font-weight: bold;
  }
  
  .info-element label {
    min-width: 120px;
    text-align: right;
    font-weight: bold;
  }
  
  .value {
    text-align: left;
    color: white;
  }
  
  #information-section {
    padding: 0 !important;
    background-color: rgb(0, 0, 0);
    height: fit-content;
    background-image: url('/assets/ship.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 30%;
    width: 70%;
    margin: 0 auto !important;
    margin-bottom: 30px !important;
  }
  
  #information-section p {
    color: var(--text-color);
    font-size: 16px;
  }
  
  #information-overflow {
    margin: 0 !important;
    padding: 15px !important;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    border: none !important;
  }
  
  #information-overflow h1 {
    color: var(--text-color);
    text-align: center;
    font-weight: 700;
  }
  
  #information-overflow h4 {
    color: var(--text-color-main);
    margin-top: 40px;
  }
  
  #join-button-section {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  
  #join-button {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: calc(200px + 1em);
    height: 40px;
    background-color: rgba(0, 0, 0, .5);
    cursor: pointer;
    color: var(--text-color);
  }
  
  footer {
    display: flex !important;
    margin: 0 !important;
    padding: 0 !important;
    /* border-color: rgb(56, 45, 26); */
    /* border-style: solid; */
    /* border-width: 3px; */
    /* border-top: 0px; */
    height: 40px !important;
    min-height: 40px !important;
    margin-bottom: 0px !important;
    margin-right: 10px !important;
    margin-left: 10px !important;
    margin-top: auto !important;
  }
  
  #footer {
    margin: 0 !important;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px !important;
  }
  
  #footer span {
    color: var(--text-color);
    height: 20px;
  }
  
  @media only screen and (max-width: 992px) {
  
    #login-section,
    #info-section,
    #logo-section {
      margin: 0 auto !important;
      margin-bottom: 30px !important;
    }
  
    #o1 {
      order: 1;
    }
  
    #o2 {
      order: 3;
      width: 100% !important;
      display: flex;
      margin-left: -5px !important;
    }
  
    #o3 {
      order: 2;
    }
  
    #login-section {
      margin: 0 !important;
      width: 100% !important;
    }
  
    #logo-section {
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    #info-section {
      margin: 0 !important;
      width: 90% !important;
    }
  
    #information-overflow h1 {
      font-size: 45px;
    }
  
    #information-overflow h4 {
      font-size: 24px;
    }
  
    footer {
      height: 60px !important;
      min-block-size: 60px !important;
    }
  
    #footer {
      display: flex;
      justify-content: space-between;
      flex-direction: column;
      align-items: center;
      padding: 5px !important;
    }
    #information-section
    {
      width: 95% !important;
    }
  }