:root {
  --main-color: #000137;
  --main-hover-color: #282f5f;
  --sub-color: white;
  --main-image-filter: invert(6%) sepia(63%) saturate(3693%) hue-rotate(232deg)
    brightness(91%) contrast(117%);
  --sub-image-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(73deg)
    brightness(104%) contrast(101%);
}

body {
  background-color: white;
  padding-top: 0px;
  margin-top: -1px;
  margin-bottom: 55px;
  margin-left: -1px;
  margin-right: -1px;
  visibility: hidden;
}
p {
  padding: 0px;
}
.div2 {
  width: 100%;
  font-size: 25px;
  padding: 0px;
}

.div2 span {
  color: var(--sub-color);
  vertical-align: middle;
}

#div1 {
  background-color: var(--main-color);
  width: 100%;
  display: flex;
  vertical-align: middle;
  padding: 0px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#option {
  width: 40px;
  height: 40px;
  object-fit: scale-down;
  margin: 10px 5px 10px 10px;
}

#loader {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #000137;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  animation: spin 2s linear infinite alternate;
  margin: auto;
  margin-top: 30px;
  display: none;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(1080deg);
  }
}
