* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial;
}

.cont {
  width: 100%;
  height: 100vh;
  background: #00000040;
  -webkit-animation: blw 5s  forwards;
          animation: blw 5s forwards;
  display: flex;
  overflow: hidden;
}
.cont .wrapp {
  margin: auto;
  color: #0c3f96;
}
.cont .wrapp .logo {
  transform: translateX(-100vw);
  -webkit-animation: slidein 0.5s 1s forwards;
          animation: slidein 0.5s 1s forwards;
  background: url(latlogo.png) no-repeat 50% 50%/contain;
  width: 210px;
  height: 60px;
}
.cont .wrapp p {
  transform: translateX(-100vw);
  -webkit-animation: slideinl 0.7s 1s forwards;
          animation: slideinl 0.7s 1s forwards;
}
.cont .wrapp p span {
  color: #fff;
  text-shadow: 0 1px 5px #00000033;
  font-size: 80%;
}

@-webkit-keyframes slidein {
  from {
    transform: translateX(-200%);
    width: 360%;
  }
  to {
    transform: translateX(0);
    width: 100%;
  }
}

@keyframes slidein {
  from {
    transform: translateX(-200%);
    width: 360%;
  }
  to {
    transform: translateX(0);
    width: 100%;
  }
}
@-webkit-keyframes slideinl {
  from {
    transform: translateX(200%);
    width: 360%;
  }
  to {
    transform: translateX(0);
    width: 100%;
  }
}
@keyframes slideinl {
  from {
    transform: translateX(200%);
    width: 360%;
  }
  to {
    transform: translateX(0);
    width: 100%;
  }
}
@-webkit-keyframes blw {
  from {
    opacity: 0%;
  }
  to {
    opacity: 100%;
  }
}
@keyframes blw {
  from {
    opacity: 0%;
  }
  to {
    opacity: 100%;
  }
}