:root {
  --main-background-color: #000000;
  --main-red-color: rgba(221, 68, 67, 1);
  --main-white-text: rgb(250, 250, 250);
  --main-title-font: "Bubblegum Sans", sans-serif; /* Fallback to a generic font if the custom font is not available */
  --main-text-font: "Bubblegum Sans", sans-serif; /* Fallback to a generic font if the custom font is not available */
}

body {
  font-family: var(--main-title-font), var(--main-text-font), Arial, sans-serif;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 1);
  transition: background-color 200ms, color 200ms ease-in-out;
}

h1 {
  font-size: 31px;
  font-weight: 700;
  color: var(--main-white-text);
  margin: 0;
}
h1:hover {
  cursor: pointer;
  filter: brightness(2);
}
h2 {
  font-family: var(--main-title-font);
}
.col p {
  font-family: var(--main-text-font);
}

main > .container {
  padding: 60px 15px 0;
}

#navbarCollapse {
  justify-content: end !important;
}
.navbar {
  background-color: var(--main-background-color) !important;
}

.bi::before {
  display: inline-block;
  content: "";
  vertical-align: -0.125em;
  background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M8 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3z' clip-rule='evenodd'/></svg>");
  background-repeat: no-repeat;
  background-size: 1rem 1rem;
}

.container {
  width: auto;
  max-width: 680px;
  padding: 0 15px;
  text-align: center;
}
.rounded-circle {
  margin-bottom: 10px;
}

.red-dot {
  color: var(--main-red-color);
}

.dlfooterlogo {
  display: flex;
  justify-content: left;
  max-width: fit-content;
  font-size: 30px;
  font-family: var(--main-title-font), sans-serif;
  font-weight: 600;
  color: var(--main-white-text);
  text-decoration: underline;
  text-decoration-color: var(--main-red-color);
  transition: all 200ms ease-in-out;
}
.dlfooterlogo:hover {
  text-decoration-color: var(--main-red-color);
  cursor: pointer;
  filter: brightness(1.5);
}
.text-body-secondary {
  color: var(--main-background-color) !important;
}

.icon {
  width: 24px;
  height: 24px;
  transition: opacity 0.3s;
  cursor: pointer;
}

.form-check-input {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.form-check-input:focus {
  box-shadow: none !important;
}

.form-check-input:checked {
  background-color: var(--main-red-color);
  border-color: var(--main-red-color);
}
.footer {
  background-color: #333333; /* Change this to your desired color */
}

body.dark-mode {
  background-color: #121212;
  color: var(--main-white-text);
}

body.dark-mode {
  background-color: #000000;
}

body.dark-mode .text-body-secondary,
body.dark-mode .footersentence a {
  color: var(--main-white-text) !important;
}

body.dark-mode .btn-outline-light {
  border-color: var(--main-white-text);
  color: var(--main-white-text);
}

body.dark-mode .btn-outline-light:hover {
  background-color: var(--main-white-text);
  color: #000000;
}

body.dark-mode .footer {
  background-color: #000000 !important;
}
.form-switch {
  padding-left: 0 !important;
}

.about-link {
  color: var(--main-background-color);
}
.about-pictures {
  margin-top: 100px !important;
  margin-bottom: 30px !important;
}

.dark-mode .about-link {
  color: var(--main-white-color);
}
.footerdarkmode {
  margin-bottom: 15px;
}

.dark-mode .darkmodeline {
  display: block !important;
}

.footersentence {
  font-size: 12px;
}

.aboutcontact {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
