@import url('https://fonts.googleapis.com/css2?family=Lilita+One&display=swap');

body {
    font-family: 'Lilita One', cursive;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #202020;
}

/* Menu icon fixed to top-left corner */
#menu-icon {
    position: fixed;
    width: 40px;
    height: auto;
}


/* Page heading */
#heading {
    color: white;
    text-align: center;
    font-size: 40px;
    margin: 100px 0 30px 0; /* creates space below menu, but not above it */
}

/* Container for the play options */
.play-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 20px;
}

/* Shared styles for both columns */
.left-column, .right-column {
    padding: 30px;
    border-radius: 10px;
    width: 250px;
    height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.left-column {
    background-color: #0D92F4;
}

.right-column {
    background-color: #F95454;
}

/* Buttons styled as links */
.left-column a {
    color: white;
    text-decoration: none;
    background-color: #77CDFF;
    padding: 10px 15px;
    text-align: center;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.left-column a:hover {
    background-color: #555;
}

/* Tooltip display area */
.right-column p {
    color: white;
    text-align: center;
    font-size: 16px;
    margin: 0;
}
