:root{
    --primary-color: #5eba59;
}

.btn-wrap{
    display: flex;
    gap: 16px;
    align-items: center;

    &.center{
        justify-content: center;
    }
}
.btn-box{
    font-size: 16px;
    padding: 12px 18px;
    border-radius: 4px;
    border: 1px solid #000;
    background-color: #000;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    transition: all 0.3s ease;
    text-decoration: unset;

    &.btn-primary{
        background-color: var(--primary-color);
        border-color: var(--primary-color);

        &:hover{
            box-shadow: inset 0 0 0 1000px rgba(0,0,0,0.1);
        }
    }
}
.error-section{
    display: flex;
    align-items: center;
    min-height: 100vh;

    .main-title  {
        position: relative;
        margin-bottom: 20px;
        font-size: clamp(32px, 4.2vw, 82px);

        .title{
            position: relative;
            padding: 1.5em 0;
            text-align: center;
            text-transform: uppercase;
            font-weight: 400;
            font-size: inherit;
            line-height: 1;
            color: var(--primary-color);
        }
        &::before{
            content: "404";
            position: absolute;
            top: 50%;
            left: 50%;
            color: #f1f1f1;
            font-weight: 700;
            font-size: 5em;
            line-height: 1;
            transform: translate(-50%, -50%);
        }
    }
    .content{
        text-align: center;
    
        .title{
            font-size: 28px;
            margin-bottom: 20px;
            font-weight: 600;
            color: #242424;
        }

        p{
            font-size: 18px;
            margin-bottom: 20px;
        }
    }   
} 

@media (width < 767px){
    .error-section{
        .content{
            .title{
                font-size: 18px;
            }
        }
    }
}