html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Roboto, 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

.mainContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.mainContainer .errorContainer {
    width: 90%;
    max-width: 325px;
    display: flex;
    border-radius: 5px;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 7px 4px 20px 5px #d4d4d4;
}

.errorContainer .header {
    background-color: #ef5350;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 35px 0px;
}

.header .close-icon {
    border: 1px solid white;
    border-radius: 100%;
    padding: 13px 17px;
}

.close-icon .times-icon {
    fill: white;
    margin-top: 4px;
}

.errorContainer .content {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 15px;
    box-shadow: 9px 9px 11px 0 #d2bfbf;
}

.content .title {
    font-size: 18px;
    text-align: center;
    margin-top: 20px;
    font-weight: bold
}

.content .description {
    font-size: 17px;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 60px;
}

.content .button-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center
}

.content .button-container .contact-us {
    padding: 15px 30px;
    display: flex;
    align-items: center;
    background-color: #ef5350;
    color: white;
    border-radius: 25px;
    box-shadow: 0 0 7px 3px rgba(219, 83, 84, 0.5);
    margin-bottom: 25px;
    cursor: pointer;
}