.link-button {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  justify-content: center;
  padding: 10px;
  text-align: center;
  background-color: #1592a0;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin-left: 3%;
  margin-right: 3%;
  color: #ffffff;
  font-family: sans-serif;
  font-weight: 700;
  font-size: xx-large;
  text-decoration: none;
}

#links-container {
  margin-top: 20px;
  margin-bottom: 10vh; /* Add a bottom margin */ 
}

body {
  background-color: #000000;
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
}

footer.unpinned {
  position: static;
}

.bar {
  background-color: #8d0808;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bar-item {
  flex: 1;
  margin: 0;
  padding: 10px;
  color: rgb(51, 48, 48);
  text-align: center;
}

.link-button img {
  max-width: 50px;
  height: 50px;
}

.link-button span {
  flex: 1;
  text-align: center;
}

.logo-container {
  display: block;
  margin-top: 10px;
  padding: 10px;
  text-align: center; /* Center the logo horizontally */
}

#logo-container img {
  display: block;
  max-width: 65%;
  margin: 0 auto; /* Center the image horizontally */
}

#logo-container.large img {
  max-width: 90%; /* Set max-width to 80% when in mobile view */
}

#bg-container {
  height: 100vh;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: fixed;
  z-index: -1;
}

* {
  margin: 0;
  padding: 0;
}
