.menu-container {

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    height: 100vh;
}

h1 {

    text-align: center;

    font-size: 4rem;

    letter-spacing: 4px;

    text-shadow:
        0 0 20px #5c6bc0;
}

.subtitle {

    margin-top: 15px;

    margin-bottom: 50px;

    font-size: 1.2rem;

    color: #cccccc;
}

.menu-buttons {

    display: flex;

    flex-direction: column;

    gap: 20px;
}

.menu-buttons button {

    width: 280px;

    height: 60px;

    border: none;

    border-radius: 40px;

    background: #1e2f97;

    color: white;

    font-size: 1.2rem;

    cursor: pointer;

    transition: 0.3s;
}

.menu-buttons button:hover {

    transform: scale(1.05);

    background: #3949ab;
}