.section-error {
    height: 60vh;
}

.section-container-error {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 480px;
    width: 100%;
    line-height: 1.4;
}

.section-error-title {
    padding-left: 200px;
    padding-top: 12px;
    height: 170px;
    margin-bottom: 20px;
}

.section-error-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 170px;
    height: 170px;
    background: var(--hover-color);
    border-radius: 7px;
    -webkit-box-shadow: 0 0 0 10px var(--hover-color) inset, 0 0 0 20px var(--heading-color) inset;
    box-shadow: 0 0 0 10px var(--hover-color) inset, 0 0 0 20px var(--heading-color) inset;
}

.section-error-icon h1 {
    font-family: var(--primary-font), cursive;
    color: var(--heading-color);
    font-size: 118px;
    margin: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: inline-block;
    height: 60px;
    line-height: 60px;
}

.section-error-title h2 {
    font-family: var(--primary-font), cursive;
    font-size: 68px;
    color: var(--heading-color);
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.1;
}

.section-container-error p {
    font-family: var(--secondary-font), sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--heading-color);
    margin-top: 5px;
}

.section-container-error a {
    display: inline-block;
    margin-top: 20px;
    text-align: center;
}

@media only screen and (max-width: 480px) {
    .section-container-error {
        padding-left: 15px;
        padding-right: 15px;
    }
    .section-error-title {
        padding: 0;
        height: auto;
    }
    .section-error-title .section-error-icon {
        position: relative;
        margin-bottom: 15px;
    }
    .section-error-title h2 {
        font-size: 42px;
    }
}
