*{
     /*Tipografia*/
    font-family: "Doto", sans-serif;
    font-weight: auto;
}

body{
    background-color: #121212;
    height: auto 100vh;
    display: flex;
    align-content: center;
    justify-content: center;
    margin:0 auto;
}
.container-image{
    position: relative;
    display: inline-block;
    text-align: center;
}

.container-image img{
    width: 33%;
}
.eror-continer{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: aliceblue;
    max-width: 2500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    margin: auto 0 10px;
}


.error-code{
    text-shadow:0 0 30px #0094ff;
    color: #ffffff;
    width: 100%;
    margin: 0 auto;
    font-size: 6rem;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.incio{
    background-color: transparent;
    color: #ffffff;
        padding: 20px;
        display: block;
        box-shadow:0 0 3px #ffffff;
        border-radius: 15px;
        transition: .3s;
}

.incio:hover{
    border-radius: 34px;
    background-color: #454b4fa6;
    color: #ffffff;
    box-shadow: 0 0 5px #94c0de, 0 0 25px #0094ff, 0 0 50px #0094ff, 0 0 200px #3a6e94;
    -webkit-box-reflect: below 1px linear-gradient(transparent, #0005);
}