body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', 'Arial', 'Helvetica', sans-serif;
}

.error-page {
    text-align: center; 
    height: 100vh;
    width: 100%;
}

.error-page > .not-found {
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}

.error-page > .logo-header {
    min-height: 52px;
    display: flex;
    position: relative;
    align-items: center;
    margin-left: 24px;
    gap: 32px;
}
.error-page > .logo-header > h2 {
    color: #0F3549;
    flex: 1;
    text-align: left;
    font-weight: 500;
    line-height: 1.16667em;
}

.error-page > .not-found > img {
    padding-bottom: 65px;
}

.error-page > .not-found > h1 {
    color: #73D2D2;
    font-weight: 700;
    font-style: normal;
    line-height: normal;
    font-size: 40px;
    padding: 5px 0;
}

.error-page > .not-found > h2 {
    color: #0F3549;
    font-weight: 400;
    font-style: normal;
    line-height: normal;
    font-size: 20px;
    max-width: 500px;
    padding-bottom: 30px;
}

.error-page > .not-found > .link-home {
    min-height: 36px;
    display: flex;
    justify-content: center;
}

.error-page > .not-found > .link-home > a {
    text-transform: uppercase;
    color: #fff;
    background-color: #0F3549;
    padding: 10px 20px;
    font-size: 0.84rem;
    min-width: 88px;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    box-sizing: border-box;
    line-height: 1.4rem;
    box-shadow: 0px 5px 7px 0px rgba(0, 0, 0, 0.30);
}

.error-page > .not-found > .link-home:hover > a {
    background-color: #0a2533;
}