body{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
}

.navigationBar {
    width: 100%;
    height: 0px;
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 9%, rgba(178,91,184,0.7511379551820728) 100%, rgba(0,212,255,1) 100%);
}

.content {
    width: 100%;
    height: 100vh;
    background-color: #c2c0c0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.massageContainer {
    width: 600px;
    height: 300px;
    border-radius: 50px;
    background: linear-gradient(145deg, #cacaca, #f0f0f0);
    box-shadow:  20px 20px 60px #5a5a5a,
    -20px -20px 60px #ffffff;
    background-size: cover;
    font: normal 30px/39px "Roboto", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;

}

.item {
    margin-top: 70px;
}

.footer {
    width: 100%;
    height: 0px;
    background: linear-gradient(90deg, rgba(63,94,251,1) 24%, rgba(252,70,107,1) 89%);
}