#cafe-selection-screen {
    text-align: center;
    padding: 3rem 2rem;
}

#cafe-selection-screen h1 {
    font-size: 4rem !important;
    font-style: normal !important;
    font-weight: 700;
    color: #000 !important;
    margin-bottom: 4rem !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.1rem;
}

.cafe-buttons-container {
    width: 80%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 2rem;
    align-items: stretch;
    margin: 0 auto;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .cafe-buttons-container {
        grid-template-columns: 1fr;
    }
}

button.cafe-button,
.cafe-button {
    outline: none !important;
    cursor: pointer;
    -webkit-transition: all ease-in .3s;
    transition: all ease-in .3s;
    font-style: normal;
    font-weight: bold;
    font-size: 2.5rem !important;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.05rem;
    color: #FFFFFF !important;
    padding: 0 3rem !important;
    background-color: #D31340 !important;
    background: #D31340 !important;
    border: none !important;
    mix-blend-mode: normal;
    border-radius: 0.5rem;
    -webkit-filter: none;
    filter: none;
    height: 80px;
    max-height: 80px;
    width: 100%;
    overflow: hidden;
    word-wrap: break-word;
    white-space: normal;
    text-overflow: ellipsis;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

