html, body {
  min-height: 100vh;
}

body {
  position: relative;
  background-image: url("../images/vasta_astronaut.webp");
  background-size: cover, auto;
  background-position: 100% 100%, 50% 50%;
  background-repeat: no-repeat;
  background-color: #1a1a1a;
}

.hide {
  display: none;
}

.show {
  display: block;
}

.loading-screen {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  gap: 10px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.loading-screen .loading-element.show{
  display: flex !important;
}

header .container-fluid,
main {
  padding: 0 20px;
}

header .navbar {
  background-color: #1a1a1a !important;
}

header * {
  color: #fff !important;
}

.navbar-brand {
  width: 120px;
}

.navbar-brand img {
  max-width: 100%;
  height: auto;
}

form {  
  padding: 20px;
  border-radius: 10px;
  background-color: #f5f5f5;
}

form button {
  height: 44px;
  padding: 0 20px;
  text-transform: capitalize;
}

.loading-element {
  align-items: center;
}

.loading-element div {
  border-color: #551dc7 !important;
  border-right-color: transparent !important;
}

table,
thead,
tbody,
tr,
th,
td {
  background: none !important;
}

td {
  position: relative;
}

td a {
  color: #000;
}

.project-report-modal td svg {
  position: absolute;
  top: 5px;
  right: -3px;
  width: 10px;
  height: 10px;
}

@media (max-width: 1019px) {
  main {
    width: 100%;
  }
}

@media (max-width: 479px) {
  body {
    background-position: 64%;
  }
}