.help-message-background{
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background-color: #464646a4;
    z-index: 100;
}

.help-message{
    position: relative;
    width: 800px;
    height: 90%;
    max-height: 650px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgb(145, 175, 231) 0%, rgba(255,255,255,1) 70%);
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: flex-start;
    padding: 30px 20px;
    overflow-y: scroll;
}

.adjust-exit-button{
    display: flex;
    position: relative;
    width: 100%;
    justify-content: flex-end;
}

.adjust-exit-button button{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 100%;
    background-color: var(--primary-main);
    border: 0;
    cursor: pointer;
}

.help-message-image{
    margin-top: 25px;
    width: 100%;
    border-radius: 20px;
}

.help-message h2{
    font-size: 2.4rem;
    color: var(--neutral-800);
    font-weight: 600;
    width: 100%;
    text-align: center;
}

.help-message p{
    font-size: 1.6rem;
    color: var(--neutral-400);
    font-weight: 500;
    width: 100%;
    text-align: center;
}