* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto';
}
::marker {
    color: #ce1317;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: white;
}
.error-header {
    display: flex;
    flex-direction: row;
    gap: 90px;
    padding: 50px;
    border-bottom: 5px solid #f84649;
}
.error-header__h1 {
    font-weight: normal;
    font-size: 30px;
    width: 600px;
}
.error {
    display: flex;
    flex-direction: row;
    gap: 80px;
    margin-left: 170px;
    margin-top: 120px;
}
.error__info {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 450px;
}
.error__info_h2 {
    font-size: 2.1em;
    padding: 20px;
}
.error_errorH1 {
    font-size: 3em;
    color: #f84649;
    padding: 20px;
    border: 3px solid #f84649;
}
.errorBorder {
    color: #55adff;
    border: 3px solid #55adff;
}
.error__info_p {
    color: white;
    background-color: #55adff;
    font-size: 1.5em;
    font-weight: bold;
    padding: 10px;
}
.back {
    position: absolute;
    bottom: 130px;
    right: 170px;
    text-decoration: none;
    font-size: 2em;
    color: white;
    background-color: #ce1317;
    padding: 20px;
    font-weight: bold;
    border-radius: 10px;
}
.back:hover {
    background-color: #55adff;
    transition: 0.5s;
}
.back:not(hover) {
    transition: 0.5s;
}