﻿*{
    box-sizing:border-box;
}
html{
    height:100%;
    min-height:100%;
}
body {
    height: 100%;
    margin: 0;
    background-image: linear-gradient(90deg, rgb(35, 131, 218) 17%, rgb(80, 180, 218) 81%,#2383da);
    position:relative;
}
.container-error {
    display: flex;
    flex-direction: column;
    width: 260px;
    height: 244px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -130px;
    margin-left: -122px;
    padding-top:22px;
}
.mx-container{
    width:370px;
    height:350px;
    margin-top:-185px;
    margin-left:-175px
}
.title{
    font-size:8rem;
    text-align:center;
    color:white;
    text-shadow:1px 1px 1px black;
}
.info {
    font-size: 2rem;
    text-align: center;
    color: white;
    text-shadow: 1px 1px 1px black;
}
.btn-comeback {
    margin: auto;
    margin-top: 16px;
    background-color: #2b82ce;
    padding: 8px 12px;
    border-radius: 6px;
    box-shadow: 1px 1px 4px 0px black;
    text-shadow: 1px 1px 1px black;
    color:white;
    text-decoration:none;
    outline:none;
}

@media(max-width:370px) {
    .mx-container {
        width: 100%;
        height: 100%;
        margin-top: 0;
        margin-left: 0;
        position:relative !important;
        top:0;
        left:0;
    }
    .info{
        font-size:1.8rem;
    }
}
@media(max-width:300px){
    .container-error {
        width: 100%;
        height: 100%;
        margin-top: 0;
        margin-left: 0;
        position: relative !important;
        top: 0;
        left: 0;
    }
}