@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900&display=swap');
*
{	
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
	scroll-behavior: smooth;	
}

body
{	
	height: 100%;
	overflow-x: hidden;
	background: #151515	
}


.error
{

    position: relative;
    background: #151515;

}

.error h2
{

	display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    margin-top: 100px;
    color: #cacaca;
    text-align: center;

}

.error p
{

	display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    color: #4d4d4d;
    text-align: center;

}

.error .container img#cri
{

    display: block;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: 250px;
    height: 250px;

}

.error .button
{

    text-align: center;
    padding-top: 10px;

}

#home
{

    color: #cacaca;
    text-decoration: none;
    display: inline-block;
    margin-top: 40px;
    padding: 8px 30px;
    border-radius: 40px;
    font-size: 1.2em;
    border-style: solid;
    border-width: 1px;
    transition: 0.3s;

}

#home:hover
{

    background: #cacaca;
    color: #151515;

}