@import url('https://fonts.googleapis.com/css?family=Dosis:300,400,500');

@-moz-keyframes rocket-movement { 100% {-moz-transform: translate(1200px,-600px);} }
@-webkit-keyframes rocket-movement {100% {-webkit-transform: translate(1200px,-600px); } }
@keyframes rocket-movement { 100% {transform: translate(1200px,-600px);} }
@-moz-keyframes spin-earth { 100% { -moz-transform: rotate(-360deg); transition: transform 20s;  } }
@-webkit-keyframes spin-earth { 100% { -webkit-transform: rotate(-360deg); transition: transform 20s;  } }
@keyframes spin-earth{ 100% { -webkit-transform: rotate(-360deg); transform:rotate(-360deg); transition: transform 20s; } }

@-moz-keyframes move-lupa {
    100% { -moz-transform: translate(-160px, -160px);}
}
@-webkit-keyframes move-lupa {
    100% { -webkit-transform: translate(-160px, -160px);}
}
@keyframes move-lupa {
    100% { -webkit-transform: translate(-160px, -160px); transform:translate(-160px, -160px); }
}
@-moz-keyframes rotate-lupa {
    100% { -moz-transform: rotate(-720deg);}
}
@-webkit-keyframes rotate-lupa {
    100% { -webkit-transform: rotate(-720deg);}
}
@keyframes rotate-lupa{
    100% { -webkit-transform: rotate(-720deg); transform:rotate(-720deg); }
}

@-moz-keyframes glow-star {
    40% { -moz-opacity: 0.3;}
    90%,100% { -moz-opacity: 1; -moz-transform: scale(1.2);}
}
@-webkit-keyframes glow-star {
    40% { -webkit-opacity: 0.3;}
    90%,100% { -webkit-opacity: 1; -webkit-transform: scale(1.2);}
}
@keyframes glow-star{
    40% { -webkit-opacity: 0.3; opacity: 0.3;  }
    90%,100% { -webkit-opacity: 1; opacity: 1; -webkit-transform: scale(1.2); transform: scale(1.2); border-radius: 999999px;}
}

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

html{
    margin: 0;
    width: 100%;
    height: 100%;
    font-family: 'Dosis', sans-serif;
    font-weight: 300;
    -webkit-user-select: none; /* Safari 3.1+ */
    -moz-user-select: none; /* Firefox 2+ */
    -ms-user-select: none; /* IE 10+ */
    user-select: none; /* Standard syntax */
}

body{
    height: 100vh;
    padding-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--extra-light);
    font-family: 'Times New Roman', Times, serif;
}

.bg{
    background: url(./images/fondo.svg);
    background-repeat: repeat-x;
    background-size: cover;
    background-position: left top;
    height: 100%;
    overflow: hidden;
}


.container{
    max-width: 90%;
    padding: 2rem;
    margin: auto;
    display: grid;
    color: #3D9AD7;
   /*  background-color: rgba(102, 145, 131, 0.345); */
}

.letters{
    display:flex;
    flex-direction: column;
    justify-content: center;
    /* background-color: rgba(125, 206, 236, 0.346); */
}

.img-404{
    width: 100%;
    max-width: 300px;
    /* background-color: rgba(255, 255, 0, 0.318); */
}

.lupa{
    width:80px;
   /*  position:relative; */
    top: 7%;
    left: 15%;
    z-index: 90;
    will-change: transform;
    animation: rotate-lupa 50s infinite linear both alternate;

}

.monito{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* background-color: rgba(125, 206, 236, 0.346); */
}

.monito img{
    width: 100%;
    max-width: 300px;
    margin: auto;
   /*  background-color: rgba(255, 255, 0, 0.318); */
}
.button{
    position:relative;
    z-index: 200;
    width: 200px;
    padding: 10px 15px;
    border: 1px solid #398fff;
    border-radius: 100px;
    font-weight: 400;
    display: block;
    color: white;
    text-align: center;
    text-decoration: none;
    letter-spacing : 2px;
    font-size: 13px;
    background-color: #438AC4;
    margin-bottom: 10%;
}

.button:hover{
    background-color: #f5f5f5;
    color: #000000;
    transform: scale(1.05);
    box-shadow: 0px 20px 20px rgba(0,0,0,0.1);
}


.letters h1 {
    font-size: 5rem;
    font-weight: 900;
    margin: 0;
}

.letters h2 {
    font-size: 2rem;
    font-weight: 900;
    margin: 0;
}

.container h3 {
    font-size: 1rem;
    font-weight: 900;
    color: #072b42a8;
    margin-bottom: 4%;
}

@media (min-width: 640px){
    .container{
        max-width: 1200px;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .container img{
        max-width: 550px;
        grid-area: 1/1/3/2;
    }
}

@media (min-width: 1024px){
    .container{
        column-gap: 5rem;
    }

    .letters h1 {
        font-size: 6rem;
        margin-bottom: 1%;
    }

    .letters h2 {
        font-size: 3rem;
        margin-bottom: 4%;
    }

    .letters h3 {
        font-size: 1.3rem;
        color: #072b42a8;
    }
}
