body{
    overflow-y: hidden;
    overflow-x: hidden;
    background-color: #101820;
}

.cover{
    background-color: #101820;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1;
    opacity: 1;
    animation: fadeOutCover 1s forwards 5s;
  }

@keyframes fadeOutCover {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.splash-change {
    z-index: 1000;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centering horizontally and vertically */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.splash-change img {
    max-width: 60%;
    max-height: 60%;
    animation: fadeInUpChange 2s forwards, fadeOutChange .5s forwards 2s; /* Apply animation */
}

@keyframes fadeInUpChange {
    from {
        opacity: 0; /* Initially transparent */
        transform: translateY(50%); /* Move image down by 20px */
    }
    to {
        opacity: 1; /* Fade in */
        transform: translateY(0); /* Move image up to the center */
    }
}

@keyframes fadeOutChange {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0; /* Fade out */
    }
}



.splash-logo {
    z-index: 1000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Initially hidden */
    animation: fadeInOut 2.5s ease-in-out forwards 2.5s; /* Apply animation */
}

.splash-logo img {
    max-width: 40%;
    max-height: 40%;
}

@keyframes fadeInOut {
    0% {
        opacity: 0; /* Initially hidden */
    }
    25% {
        opacity: 1; /* Fade in */
    }
    75% {
        opacity: 1; /* Hold */
    }
    100% {
        opacity: 0; /* Fade out */
    }
}


#LOGO {
position: absolute; /* added */
height: 80px; 
width: 80px;
bottom: 10px; /* modified */
right: 10px; /* modified */
background-image: url("./img/logo_white.png");
background-size: cover;
background-color: rgba(255, 255, 255, 0);
border-radius: 5px;
}

.home-container {
  width: 100%;
  display: flex;
  min-height: 100vh;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: #101820;
}
.home-span {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  align-self: center;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}
.home-text {
  color: rgb(255, 255, 255);
  margin: 3%;
  font-size: 150%;
  font-style: normal;
  text-align: center;
  font-family: "Arial";
  font-weight: 700;
  padding-bottom: 0%;
}
.home-span1 {
  width: 90%;
  height: 100%;
  display: flex;
  position: relative;
  align-self: center;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}
.home-rightimage {
  width: 90%;
  height: 100%;
  margin: 6%;
  display: flex;
  align-self: center;
  flex-direction: column;
  justify-content: center;
}
.home-navalimg {
  width: 100%;
  height: 50%;
  margin: 0%;
  align-self: center;
  object-fit: cover;
  border-color: #E4002B;
  border-width: 10px;
}
.home-text4 {
  color: rgb(255, 255, 255);
  padding: 2%;
  font-size: 150%;
  align-self: center;
  font-style: normal;
  text-align: center;
  font-family: "Arial";
  font-weight: 700;
  line-height: 1.15;
}
.home-rightimage1 {
  width: 90%;
  height: 100%;
  margin: 6%;
  display: flex;
  align-self: flex-start;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.home-navalimg1 {
  width: 100%;
  height: 50%;
  margin: 0%;
  align-self: center;
  object-fit: cover;
  border-color: #E4002B;
  border-width: 10px;
}
.home-text5 {
  color: rgb(255, 255, 255);
  padding: 2%;
  font-size: 150%;
  align-self: center;
  font-style: normal;
  text-align: center;
  font-family: "Arial";
  font-weight: 700;
  line-height: 1.15;
}
@media(max-width: 767px) {
  .home-span {
    align-self: center;
  }
  .home-span1 {
    align-self: center;
  }
}
@media(max-width: 479px) {
  .home-container {
    flex-direction: column;
  }
  .home-span {
    flex-direction: column;
  }
  .home-span1 {
    align-items: center;
    flex-direction: column;
    justify-content: center;
      width: 75%;
  }
  .home-rightimage {
    align-self: center;

  }
  .home-rightimage1 {
    align-self: center;

  }
    body{
    overflow-y: visible;
    overflow-x: hidden;
    }
    #LOGO {
display: none;
    }
    .home-text4 {
  text-align: center;
                font-size: 100%;
    }
    .home-text5 {
  text-align: center;
        font-size: 100%;
    }
}

@media(min-width: 800px) {
    .splash-change {
        width: 70%;
    }
    
}