* {
  padding: 0;
  margin: 0;
}

.container {
  position: relative;
  height: 130vh;
  width: 100vw;
  display: grid;
  grid-gap: 10px;
  grid-template-rows: 20vh;
  grid-template-columns: auto;
  background-image: url(https://mail.google.com/mail/u/0?ui=2&ik=e0bb37881b&attid=0.2&permmsgid=msg-f:1672919080560779965&th=1737670a4ecc62bd&view=att&disp=safe)
}

.nav {
  background-image: url(https://phandroid.com/wp-content/uploads/2015/07/8-bit-landscape-1.png);
  background-position: center;
  background-size: auto 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.base{
  display: flex;
  justify-content: center;
  align-items: center;
}

#logo{
  position:absolute;
  height: 750px;
  z-index: 2;  
}

#sun {
  position: absolute;
  max-height: 860px;
  margin-top: 0;
  margin-right: 0;
  z-index: 1;
  height: auto;
  width: auto;
  -webkit-animation:spin 4s linear infinite;
  -moz-animation:spin 4s linear infinite;
  animation:spin 4s linear infinite;
}

#title {
  position: absolute;
  margin-top: 30px;
  margin-left: -10px;
  font-size: 60px;
  z-index: 8;
}

#title1 {
  position: absolute;
  margin-top: 200px;
  margin-left: -10px;
  font-size: 60px;
  z-index: 8;
}

.text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Monoton', cursive;
  background: linear-gradient(to right, #6666ff, #0099ff , #00ff00, #ff3399, #6666ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rainbow_animation 6s ease-in-out infinite;
  background-size: 400% 100%;
}

#scape { 
  position: absolute;
  max-height: 500px;
  margin-top:550px;
  z-index: 0;
  height: 100%;
  width: 100%;
}

@keyframes rainbow_animation {
    0%,100% {
        background-position: 0 0;
    }

    50% {
        background-position: 100% 0;
    }
}
}

@-moz-keyframes spin { 
  100% { 
    -moz-transform: rotate(360deg); 
  } 
}
@-webkit-keyframes spin { 
  100% { 
    -webkit-transform: rotate(360deg); 
  } 
}
@keyframes spin { 
  100% { 
    -webkit-transform: rotate(360deg); 
    transform:rotate(360deg); 
  } 
}
