body {
  margin: 0;
  padding: 0;
  overflow: hidden; }

* {
  font-family: sans-serif;
  color: white; }

.overflow-hidden {
  overflow: hidden; }

.pages-home {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  width: 100vw;
  height: 100vh;
  background-color: #083460; }

.hidden {
  opacity: 0; }

.logo-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%; }

.logo {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #021f33;
  width: 100%;
  justify-content: center; }

@keyframes shadow {
  0% {
    filter: drop-shadow(2px 2px 4px #ffffffff); }
  66% {
    filter: drop-shadow(2px 2px 4px #ffffff00); }
  100% {
    filter: drop-shadow(2px 2px 4px #ffffffff); } }

svg {
  min-width: 50px;
  width: 10%;
  height: auto;
  animation: shadow 4s ease infinite; }

svg path {
  fill: white; }

.logo-container span {
  display: block;
  font-size: 60px;
  font-weight: bold;
  letter-spacing: 0.8em;
  color: white;
  animation: shadow 4s ease infinite; }

.logo-container small {
  font-size: 34px;
  display: block;
  color: white; }

@media (max-width: 991px) {
  .logo-container span {
    font-size: 36px; }
  .logo-container small {
    font-size: 20.5px; } }

@media (max-width: 576px) {
  .logo-container span {
    font-size: 25px; }
  .logo-container small {
    font-size: 14.3px; } }

.links {
  z-index: 0;
  display: flex;
  gap: 40px; }

.sub {
  z-index: 0;
  position: relative; }

.carousel-container {
  width: 100%;
  display: flex;
  justify-content: center; }

.carousel_items {
  display: flex;
  width: 100%;
  text-align: center;
  wrap: nowrap;
  overflow: hidden; }

.carousel_item {
  position: relative;
  min-width: 100%;
  transition: all 0.3s linear;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  font-weight: bold; }

canvas {
  position: fixed;
  width: 100%;
  min-width: 100vh;
  height: 100%;
  opacity: 1;
  transition: 0.5s opacity; }
