:root {
    --blue-color: #03BDF8;
    --green-color: #b7f8a8;
}

#mainMenuText {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: Roboto, "Helvetica Neue", sans-serif;
    color: black;
    text-align: center;
}

#content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 2rem;
}

.buttonMain {
    cursor: pointer;
    width: 290px;
    height: 32px;
    background-color: #F7F4F7;
    position: relative;
    top: 18px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    border-radius: 3px;
    border: none;

    color: #000000;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    font-family: Roboto, "Helvetica Neue", sans-serif;
}

.buttonMain:last-child {
    margin-bottom: 0;
}

.buttonMain:hover {
    background-color: #F6E0F4;
    transition: 200ms;
}

.buttonMain p {
    color: #5C2649;
    font-size: 18px;
    font-weight: bold;
    font-family: Roboto, "Helvetica Neue", sans-serif;
    text-align: center;
    position: relative;
}