.error-image img{
    width: 100%;
}

.error-image{
    width: 10%;
    margin-left: auto;
    margin-right: auto;
}

.content-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 70vh;
}

a.error-btn{
    margin-top: 4vh;
    padding: 10px 30px 10px 30px;
    color: var(--white);
    background-color: var(--blue-branding);
    border-radius: 4px;
    transition-duration: 0.6s;
}

a.error-btn:hover{
    background-color: var(--dark-blue);
}

@media screen and (max-width:600px){
    .error-image{
        width: 30%;
    }
}