@import url('https://fonts.googleapis.com/css2?family=Anton&family=Roboto:wght@100..900&family=Rubik:wght@300..900&display=swap');
*{
    margin: 0;
    padding: 0;
}
body {
   background: #040f22;
    overflow: hidden;
    width: auto;
    height: 100%;
    font-family: "Roboto", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}
a,
a:hover{
    text-decoration: none;
}
.error-container{
    min-width: 900px;
    width: 100%;
    height: 100%;
}
.state{
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.error-content{
    top: 0;
    left: 0;
    z-index: 100;
}
.gallaxy{
    background:transparent url('../images/bg4.jpg') repeat-x 0 0 fixed;
    -webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
    overflow: hidden;
}
.asstronuat {
	top: 122px;
	left: 100px;
    right: auto;
    animation: updown 6s ease-in-out infinite;
}
.asstronuat img{
    width: 400px;
    height: auto;
    margin-left: 40px;
}
.error-content .error-text{
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}
.error-content .error-text h4{
    font-family: "Anton", sans-serif;
    font-size: 300px;
    line-height: 300px;
    font-weight: 600;
    color: #fff;
    z-index: 11;
    letter-spacing: 5px;
    display: block;
    pointer-events: auto;
}
.error-content .error-text p{
    color: #fff;
    font-size: 40px;
    letter-spacing: 4.345px;
    padding-bottom: 20px;
}

.neon-button {
    position: relative;
    display: inline-block;
    padding: 20px 60px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    border-radius: 50px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 1px solid #10709f; border-top-color: #ff00ffb2;
}
.neon-button::before {
    content: '';
    position: absolute;
    left: 0;
    top:0;
    inset: 0;
    border-radius: 50px;
    opacity: 0.4;
    transition: transform 0.3s ease;
    background: linear-gradient(
        to bottom, 
        #1A1A4B, 
        #3B3B6D, 
        #5F4B8B  
      );
    z-index: 1;
}
.neon-button:hover::before {
	background: linear-gradient( to bottom, #D26DD1, #292989, #470FC3 );
}

@keyframes updown {
    0% {
        transform: translateY(0);
    }
    
    50% {
        transform: translateY(-40px);
    }
    100% {
        transform: translateY(0);
    }
}
/*--------------------------------------------------------------
    laptop device
---------------------------------------------------------------*/
@media only screen and (max-width: 1400px) {
    .asstronuat {
        top: 62px;
        left: 0px;
    }
    .asstronuat img{
        width: 400px;
    }
}

@media screen and (max-width:1366px) {
    .asstronuat {
        top: 110px;
        left: 6px;
    }
    .asstronuat img{
        width: 350px;
    }
}

@media only screen and (max-width: 1200px) {
    .error-content .error-text h4 {
        font-size: 185px;
        line-height: 185px;
    }
   
    .asstronuat {
        top: 115px;
        left: 0px;
    }
    .asstronuat img {
        width: 320px;
    }
}

/*--------------------------------------------------------------
    tablet device
---------------------------------------------------------------*/
@media screen and (max-width:991px) {
    .error-content .error-text h4 {
        font-size: 170px;
    }
    .error-content .error-text p {
        font-size: 28px;
    }
    .asstronuat {
        top: 62px;
        left: 0px;
       
    }
    .asstronuat img {
        margin-left:0;
    }
}
@media screen and (max-width:767px) {
    .asstronuat {
        top: 130px;
    }
    .asstronuat img {
        width: 280px;
    }
}
@media screen and (max-width:660px) {
    .error-content .error-text h4 {
        font-size: 150px;
        line-height: 160px;
        text-shadow: 3px 4px 0px #51488d;
    }
}
/*--------------------------------------------------------------
    Mobile device
---------------------------------------------------------------*/
@media screen and (max-width:570px) {
    .asstronuat {
        top: 68px;
        left: 0;
        right: 0;
        text-align: center;
    }
    .error-content .error-text {
        top: 23%;
    }
    .error-content .error-text h4 {
        font-size: 120px;
        line-height: 130px;
    }
    .error-content .error-text p {
        font-size: 30px;
        letter-spacing: 1px;
        width: 90%;
        margin: 0 auto;
    }
    .neon-button {
        padding: 20px 41px;
    }
}
@media screen and (max-width:490px) {
    .error-content .error-text p {
        font-size: 24px;
    }
}