@font-face {
  font-family: MainFont;
  src: url(Karla-Regular.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  display: none;
}

html,
body {
  font-family: MainFont;
  font-size: 1.1em;
  height: 100%;
  width: 100%;
  background-color: #0e1221;

  scroll-behavior: smooth;

  /* Remove scrollbars */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

html {
  background-color: #0e1221;
}

.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #0e1221;
}

.background-wrapper {
  width: 95vw;
  height: 95vh;
  background: url('LyzmaLogo.svg') no-repeat center center;
  background-size: contain;
}

.hero-section > img {
  max-width: 100%;
  max-height: 45vh;
  transform: scale(0.58);
}

div.centered-text {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.centered-text img {
  max-width: 100%;
  max-height: 100%;
  transform: scale(0.58);
}

#GetInTouch {
  padding-top: 0.5em;
}

#LyzmaSolutionsText:hover {
  cursor: pointer;
  -webkit-filter: saturate(6) drop-shadow(0px 0px 2px #b5b1d0);
  filter: saturate(6) drop-shadow(0px 0px 2px #b5b1d0);
  transition: 0.5s;
  transform: scale(0.57);
}

#LyzmaSolutionsText:not(:hover) {
  transition: 0.5s;
}

.content-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 100px;
  color: #0e1221;
  text-align: center;
  background-color: #e6e8ef;
  flex-direction: column;
  justify-content: space-between;
  opacity: 1;
  transition: opacity 0.15s ease;
}

.svgWaveBottom {
  width: 100%;
}
div.svgWaveBottom img {
  margin-bottom: -6px;
}

a.contact {
  background-color: #503a82;
  color: #e6e8ef;
  border: none;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 3em 0.5em;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0px 2px 6px 0px rgb(153 144 185 / 59%);
}

a.contact:hover {
  background-color: #413068;
  color: #fff;
  transition: 0.3s;
  box-shadow: 0px 0px 10px 1px rgb(180 184 198);
}

a.contact:not(:hover) {
  transition: 0.3s;
}

div.content-section p {
  padding: 1em 2em;
}

.switch-container {
  position: relative;
  bottom: 3em;
  right: 0;
  display: flex;
  align-items: stretch;
  gap: 16px;
  flex-direction: row;
  justify-content: flex-end;
  align-content: stretch;
  flex-wrap: wrap;
  padding: 1em;
  background-color: #000000;
  width: fit-content;
  border-top-right-radius: 1em;
}

.switch-label {
  font-size: 0.9em;
  color: #e6e8ef;
  user-select: none;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0e1221;
  transition: 0.4s;
  border-radius: 34px;
  border: 1px solid #e6e8ef;
  height: 25px;
}

.slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 3px;
  background-color: #e6e8ef;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #e6e8ef;
}

input:checked + .slider:before {
  transform: translateX(25px);
  background-color: #3a4882;
}
