.errors{
    width: 100%;
    height: 100vh;
    padding: 80px 40px;
    display: grid;
    grid-template-rows: 65% 35%;
    grid-template-columns: auto;
    grid-template-areas: 'problem-description'
                         'error-btns';
}
.problem-description{
    grid-area: problem-description;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.problem-description h1{
    margin: 10px 0;
    font-size: 1.3rem;
    color: var(--main);
    font-weight: bold;
}
.problem-description h2{
    font-size: 1.1rem;
    color: var(--text-dark);
}
.error-btns{
    grid-area: error-btns;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
.error-btn{
    border-radius: 3px;
    padding: 8px 15px;
    font-size: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    cursor: pointer;
    transition: .15s ease-in-out;
}
.error-btn .bi{
    margin-right: 8px;
}
.error-btn-1{
    background-color: var(--main);
    color: var(--text);
}
.error-btn-1:hover{
    background-color: var(--main-dark);
}
.error-btn-2{
    border: 2.5px solid var(--main);
    background-color: var(--background);
    color: var(--text);
}.error-btn-2:hover{
    background-color: var(--main);
}

@media only screen and (max-width: 900px){
    .problem-description h1{
        margin: 30px 0;
    }
}