body {
  background-color: #F8F6F0;
  overflow: hidden;
}

.container {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 98%;
  height: 98%;
  overflow: hidden;
  align-content: stretch;
  align-items: stretch;
}

.background {
  width: 98vw;
  border-radius: 16px 16px 12px 12px;
  filter: saturate(125%) contrast(125%) opacity(10%) brightness(250%);
  animation: bground 3.5s ease-in;
  z-index: 0;
}

@keyframes bground {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.eagle {
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%,-50%);
  height: 83vh;
  width: 91vw;
  object-fit: contain;
  filter: contrast(10%) brightness(215%) opacity(75%);
  animation: eagle 3.5s ease-in, slide1 3.5s ease-in;
  transform-origin: center;
  overflow: hidden;
  z-index: 1;
}

@keyframes eagle {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes slide1 {
  from {
    transform: translateY(25%);
    position: absolute;
    left: 3.6%;
  }
  
  to {
    transform: translateY(-50%);
    position: absolute;
    left: 3.6%;
  }
}

.menu {
  position: absolute;
  display: inline-block;
  left: 0%;
  width: 49.8%;
  min-width: min-content;
  height: 4%;
  object-fit: contain;
  border-radius: 20px 0 0 20px;
  text-align: center;
  font-family: 'Expansiva', sans-serif;
  color: papayawhip;
  font-size: 2.5vh;
  line-height: 3.8vh;
  letter-spacing: 1px;
  text-decoration: none;
  animation: menu 3.5s ease-in, slide2 3.5s ease-in;
  background: linear-gradient( 90deg, steelBlue, rebeccapurple);
  filter: opacity(75%);
  overflow: hidden;
  z-index: 3;
}

@keyframes menu {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes slide2 {
  0% {transform: translateX(-100%);}
  100% {transform: translateX(0%);}
}

.menu:hover {
  background: linear-gradient( 90deg, rebeccapurple, steelBlue);
  border-radius: 20px 0 0 20px;
}

.menu:active {
  background: linear-gradient( 90deg, rebeccapurple, steelBlue, rebeccapurple);
  border-radius: 20px 0 0 20px;
}

.home {
  position: absolute;
  display: inline-block;
  right: 0%;
  width: 49.8%;
  min-width: min-content;
  height: 4%;
  object-fit: contain;
  border-radius: 0 20px 20px 0;
  text-align: center;
  font-family: 'Expansiva', sans-serif;
  color: papayawhip;
  font-size: 2.5vh;
  line-height: 3.8vh;
  letter-spacing: 1px;
  text-decoration: none;
  animation: home 3.5s ease-in, slide3 3.5s ease-in;
  background: linear-gradient( 90deg, rebeccapurple, steelBlue);
  filter: opacity(75%);
  overflow: hidden;
  z-index: 3;
}

@keyframes home {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes slide3 {
  0% {transform: translateX(100%);}
  100% {transform: translateX(0%);}
}

.home:hover {
  background: linear-gradient( 90deg, steelBlue, rebeccapurple);
  border-radius: 0 20px 20px 0;
}

.home:active {
  background: linear-gradient( 90deg, rebeccapurple, steelBlue, rebeccapurple);
  border-radius: 0 20px 20px 0;
}

.euronews {
  position: absolute;
  top: 5%;
  object-fit: contain;
  width: 100%;
  height: calc(95% - 8px);
  border-top: 4px solid palevioletred;
  border-left: 0px solid #ffffff;
  border-right: 0px solid #ffffff;
  border-bottom: 4px solid palevioletred;
  border-radius: 12px;
  animation: euronews 3.5s ease-in forwards, slide4 3.5s ease-in forwards;
  animation-delay: 2.9s;
  visibility: hidden;
  overflow: hidden;
  z-index: 2;
}

@keyframes euronews {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@keyframes slide4 {
  from {
    transform: scale(0%);
    visibility: visible;
  }
  
  to {
    transform: scale(100%);
    visibility: visible;
  }
}