body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    background-color: #1a1a1a;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;

    /* Background with a semi-transparent overlay */
    background-image: 
        linear-gradient(rgba(20, 15, 10, 0.8), rgba(20, 15, 10, 0.8)),
        url('https://images.unsplash.com/photo-1587069138393-a41ad787268d?ixlib=rb-4.0.3&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
}

.main-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 40px;
}

.tasting-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tasting-button {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    background-color: #fca311; /* A nice amber/orange color */
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.tasting-button:hover {
    background-color: #e8950c;
    transform: translateY(-3px);
}

/* Media query for smaller screens */
@media (max-width: 600px) {
    .main-header h1 {
        font-size: 2.2rem;
    }
    .tasting-button {
        font-size: 1.2rem;
        padding: 12px 30px;
    }
}