.menuButton {
    background-color: #7A2048;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}
.menuButton:hover {
    background-color: #408EC6;
    color: #7A2048;
}

body {
    background-color: #1E2761;
}

.menuSearchBar {
    width: 200px;
}

.bottomRightContainer {
    display: flex;
    position: fixed;
    bottom: 0;
    right: 0;
    justify-content: center;
    align-items: center;
}

.bottomRightObject {
    margin: 10px;
    text-align: center;
}

.centerContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20vh; /* slightly reduced so title shows above */
}

#guestButton {
    font-size: 32px;
}

/* New Title Styling */
#mainTitle {
    color: #408EC6;
    font-size: 100px;
    font-weight: bold;
    text-align: center;
    margin-top: 40px;
    text-shadow:
        -1px -1px 0 white,
        1px -1px 0 white,
        -1px 1px 0 white,
        1px 1px 0 white;
}

.titleContainer {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
