main {
  width: 75%;
  margin: auto;
}
/* Navbar container */
.navbar {
  background-color: #1e1e1e;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  font-size: 20px;
  font-weight: bold;
}

/* Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #00bcd4;
}

/* Hamburger button */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

body {
  font-family: "Readex Pro";
  text-align: justify;
  margin: 0;
  line-height: 1.6rem;
}

h1,
h2 {
  text-align: center;
  margin: 2rem auto;
  text-decoration: underline;
  line-height: 2.5rem;
}

h3,
h4,
h5,
h6 {
  text-decoration: underline;
}

p {
  margin: 1rem;
  text-indent: 2em;
}

a {
  color: #1e1e1e;
  font-weight: bold;
}

hr {
  margin: 2rem auto;
}

.en {
  direction: ltr;
}

img {
  width: 100%;
  max-width: 50vw;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  margin: auto;
  display: flex;
}

.button {
  display: flex;
  width: 50%;
  color: white;
  background-color: #1e1e1e;
  padding: 0.6rem;
  margin: 2rem auto;
  text-decoration: none;
  vertical-align: center;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  border-radius: 2rem 2rem 2rem 2rem;
}

.button:hover {
  color: #00bcd4;
}

.text-container {
  width: 75%;
  margin: auto;
}

.side-by-side {
  display: grid;
  grid-template-columns: minmax(min-content, 1fr) minmax(min-content, 1fr);
  column-gap: 1rem;
  margin: 4rem auto;
}

.left-column {
  grid-column: 2;
}

.right-column {
  grid-column: 1;
}

.page-manage {
  display: flex;
  text-align: center;
  margin: 2rem auto;
}

.footer-container {
  background-color: #1e1e1e;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
}
.footer-container a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.footer-container a:hover {
  color: #00bcd4;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #1e1e1e;
    width: 100%;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 15px 0;
    z-index: 999;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .side-by-side {
    grid-column: 2/3;
    display: flex;
    flex-direction: column;
    margin: auto;
  }
  img {
    max-height: 50vh;
  }
}
