.help-area {
    position: absolute;
    top: 10%;
    left: 25%;
    width: 50%;
    height: 75%;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0px 0px 16px 10px rgba(0, 0, 0, 0.75);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-top: 32px;
    padding-left: 64px;
    padding-right: 64px;
    padding-bottom: 32px;
    overflow-y: auto;
    overflow-x: hidden;
}

.help-area-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    width: 100%;
}

.help-area-title {
    font-family: "Sour Gummy", serif;
    color: #75050a;
    font-size: 32px;
    padding: 32px;
    margin: 0;
    text-align: center;
    width: 100%;
}

.help-area-close {
    font-family: "Sour Gummy", serif;
    color: #75050a;
    font-size: 24px;
    padding: 8px;
    margin: 0;
    cursor: pointer;
    border: 1px solid #75050a;
    border-radius: 50%;
}

.help-area p {
    font-family: "Sour Gummy", serif;
    text-align: center;
    font-size: 16px;
}

.help-area img {
    margin-top: 16px;
    margin-bottom: 32px;
}