body {
  font-family: 'Roboto', sans-serif;
  background-color: white;
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  transition: background-color 0.3s, color 0.3s;
}
header {
  background-color: #0A4A8A; /* Blue color */
  color: white;
  padding: 10px 0; /* Reduced padding */
  text-align: center;
  transition: background-color 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Align items vertically */
}
header .brand {
  font-size: 2.5em;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin: 0; /* Remove default margin */
}
header .tagline {
  font-size: 1.5em;
  font-weight: 400;
  margin: 5px 0; /* Reduce margin */
}
main {
  flex: 1;
  padding: 20px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
}
.logo img {
  height: 200px; /* Adjusted logo size */
  width: auto; /* Keep the original aspect ratio */
  margin-bottom: -75px; /* Adjusted spacing */
  margin-top: -35px; 
}
footer {
  background-color: #0A4A8A; /* Blue color */
  color: white;
  padding: 15px 0; /* Increased padding */
  text-align: center;
  display: flex;
  justify-content: center; /* Horizontal centering */
  align-items: center; /* Vertical centering */
  transition: background-color 0.3s;
}
.dark-mode {
  background-color: #121212;
  color: #ffffff;
}
.dark-mode header, .dark-mode footer {
  background-color: #0d47a1;
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin: 10px 0;
}
.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: #2196F3;
}
input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
  transform: translateX(26px);
}
.toggle-label {
  color: #fff;
  font-size: 0.9em;
  margin-top: 12px;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  header .brand {
      font-size: 1.5em;
  }
  header .tagline {
      font-size: 1em;
  }
  .logo img {
      height: 150px; /* Smaller size for mobile */
      margin-bottom: -50px;
      margin-top: -50px;
  }
}
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px; /* Space between items */
}

.contact-item img {
  height: 30px; /* Adjust as needed */
  width: 30px; /* Adjust as needed */
  margin-right: 10px; /* Space between icon and text */
}

.contact-text {
  font-size: 0.9em;
  color: black;
  text-decoration: none;
  color: white;
}
.contact-text:hover {
text-decoration: underline;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#app {
  background: #000;
  height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
}

#wrapper {
  text-align: center;
}

.sub {
  color: #ff4a54;
  letter-spacing: 1em;
}

@mixin glitchCopy {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch {
  position: relative;
  color: #fff;
  font-size: 4em;
  letter-spacing: 0.5em;
  animation: glitch-skew 1s infinite linear alternate-reverse;

  &::before {
    @include glitchCopy;
    left: 2px;
    text-shadow: -2px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
  }

  &::after {
    @include glitchCopy;
    left: -2px;
    text-shadow: -2px 0 #ff00c1, 2px 2px #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
  }
}

@keyframes glitch-anim {
  $steps: 20;
  @for $i from 0 to $steps {
    #{percentage($i*(1/$steps))} {
      clip: rect(random(100) + px, 9999px, random(100) + px, 0);
      transform: skew((random(100) / 100) + deg);
    }
  }
}

@keyframes glitch-anim2 {
  $steps: 20;
  @for $i from 0 to $steps {
    #{percentage($i*(1/$steps))} {
      clip: rect(random(100) + px, 9999px, random(100) + px, 0);
      transform: skew((random(100) / 100) + deg);
    }
  }
}

@keyframes glitch-skew {
  $steps: 10;
  @for $i from 0 to $steps {
    #{percentage($i*(1/$steps))} {
      transform: skew((random(10) - 5) + deg);
    }
  }
}
