body {
  background-color: white;
  font-family: Arial, sans-serif;
  margin: 0;
}
html {
  overflow-x: hidden;
}

header {
  display: none;
}

.error-box {
  background-color: #0f172a;
  color: #FFF;
  padding: 10px;
  margin: 20px;
  border-radius: 5px;
  text-align: center;
}

.message {
  margin: 0;
}

#boxes {
  content: "";
  display: table;
  clear: both;
  width: 100vw;
  height: 100vh;
}

#column1 {
  background-color: #ECE7E4;
  float: left;
  height: 100vh;
  width: 20vw;
  border-right: 2px solid #0f172a; /* Border style, width, and color */
  padding: 10px;
  box-sizing: border-box; /* Include padding and border in total width and height */
}

#column2 {
  float: left;
  height: 100vh;
  width: 80vw;
}

#inl {
  display: none;
}

.toolbar {
  margin: 0;
  width: 100%;
  position: fixed;
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
}

.menu-icon {
  display: none;
  cursor: pointer;
  background-color: #0f172a;
  width: 30px;
  margin-left: 14px;
  margin-top: 8px;
}

.bar {
  width: 30px;
  height: 3px;
  background-color: #FFF;
  margin: 6px 0;
  transition: 0.4s;
}

.tb {
  display: none;
  width: 10px;
}

/*non mobile nav */
.navbar {
  background-color: #0f172a;
  overflow: hidden;
  content: "";
  display: flex;
  justify-content: left;
  clear: both;
  width: 100vw;
  height: 50px;
}

.nav-list {
  padding-left: calc(50vw - 179px);
  list-style: none;
  text-align: center;
  margin: 0;
}

.nav-list li {
  display: inline;
  width: calc(auto - 10px);
}

.nav-list a {
  text-decoration: none;
  color: white;
  padding: 14px 16px;
  display: inline-block;
}

@media screen and (min-width: 601px) {
  .tb {
    display: none;
  }

  .error-message {
    display: none;
    justify-content: center;
    align-items: center; 
    text-align: left;
    float: left;
  }
}

@media screen and (max-width: 600px) {
  .menu-icon {
    display: inline;
    float: left;
    position: left;
  }

  .tb {
    width: 40vw;
    height: 5vh;
    display: block;
    justify-content: center;
    align-items: center; 
    text-align: left;
    line-height: 50px;
    color: white;
    float: left;
  }

  .nav-list {
    display: none;
    width: 86.5vw;
    text-align: center;
    position: right;
    background-color: #0f172a;
    z-index: 1;
  }

  .nav-list li {
    display: inline;
    margin: 0;
    width: calc(auto - 10px);
  }

  #column1 {
    display: none;
  }

  #column2 {
    width: 100vw;
    height: 100vh;
  }

  .error-message {
    color: white;
    margin: 0;
    margin-left: 15%;
    line-height: 48px;
    width: 40vw;
  }

  .image-gallery {
    width: 100vw;
    padding-left: 15px;
    justify-content: center;
  }
}

#discordwidget {
  margin-left: calc(50vw - 185px);
  width: 350px;
  padding: 10px;
  text-align: center;
}

footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  background-color: #0f172a;
  color: white;
  text-align: center;
  z-index: 2;
}

#ftdiv {
  padding: 8px;
  color: white;
}

a:link
{
    color:#FFFFFF;
}

a:visited
{
    color:#FFFFFF;
}

a:hover 
{
    color:#FFFFFF;
}

.image-gallery {
  display: flex;
  flex-wrap: wrap;
  padding-left: 10px;
  width: calc(100vw - 35px);
  gap: 10px;
}

.image-gallery > li {
  flex-grow: 1;
  list-style-type: none;
  height: 300px;
  cursor: pointer;
  position: relative;
}

.image-gallery li img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  border-radius: 5px;
}
.image-gallery::after {
  content: "";
  flex-grow: 999;
}

.custom-popup {
  font-family: Arial, sans-serif;
  font-size: 12px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #f9f9f9;
  color: #333;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  line-height: 1.4;
}
.custom-popup strong {
  color: #007bff;
}

.modern-button {
  background: linear-gradient(135deg, #4A90E2, #357ABD);
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.modern-button:hover {
  background: linear-gradient(135deg, #357ABD, #4A90E2);
  transform: translateY(-1px);
}

.modern-button:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.modern-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(74,144,226,0.4);
}