/* 


MAIN css file


*/


@import 'main.css';


/* 


MAIN css file


*/

/* 



content page starts here



*/
.content_404{
    padding-top: 10%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.e404{
    margin: 30px;
    border: 1px solid #1EBED7;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60%;
    padding: 2%;
}

h1{
    font-size: 150px;
    font-weight: bold;
}

p.message-1{
    margin-top: -10px;
    color: #888785;
    font-size: 30px;
    font-weight: bold;
}
p.message-2{
    color: #888785;
    margin-top: 10px;
    font-weight: bold;
    font-size: 25px;
}
hr{
    border-left: none; border-bottom: none;
    border-top: 1px solid #E6E8EA;
    margin-top:30px;
    margin-bottom: 40px;
    width: 80%;
}
a.home{
    border-radius: 3px;
    color: #fff;
    font-weight: bold;
    font-size: 25px;
    line-height: 45px;
    margin-bottom: 30px;
    text-align: center;
    width: 25%;
    height: 40px;
    background: #1EBED7;
}

@media(max-width:1366px){
    .content_404 {
        padding-top:6%;
    }
    .e404{
        padding: 10px;
    }
}
@media(max-width:1200px){
    .content_404{
        height: calc(1366px - 192px);
    }
    .e404{
        padding:50px;
        width: 80%;
    }
}
@media(max-width:800px){
    .content_404{
        height: calc(1024px - 192px);
    }
    .e404{
        width: 90%;
    }
    
    .content_404 p{
        text-align: center;
    }
}

@media(max-width:600px){
    .content_404{
        padding-top: 72px;
        height: 100%;
    }
    hr{
        width: 100%;
    }
    a.home{
        width: 60%;
    }
    .e404{
        margin: 40px 5%;
        width: 100%;
        padding: 20px 10px;
    }
    p.message-2{
        font-size: 18px;
    }
}

@media(max-width:375px){
    .e404{
        margin: 20px 5%;
        width: 100%;
        padding: 10px 10px;
    }
}

@media(max-width:360px){

    h1{
        font-size: 140px;
    }
    hr{
        width: 100%;
    }
    a.home{
        width: 60%;
    }
    .e404{
        margin: 20px 5%;
        width: 100%;
        padding: 5px 10px;
    }
}

@media(max-width:320px){

    h1{
        font-size: 100px;
    }
    hr{
        width: 100%;
    }
    p.message-1{
        font-size: 20px;
    }
    p.message-2{
        font-size: 15px;
    }
    a.home{
        width: 60%;
    }
    .e404{
        margin: 20px 5%;
        width: 100%;
        padding: 5px 10px;
    }
}