body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #ffffff;
    background-image:
        url('https://res.cloudinary.com/dje3ht43v/image/upload/v1713886860/felicidadAssets/Billy_Beer_Bar_Guemes_Cordoba_ncpstn.jpg');
    font-family: 'Roboto', sans-serif;
    /* Use Roboto font */
    background-size: cover;
    /* Ensures the background image covers the entire background area */
    background-position: center;
    /* Centers the background image horizontally and vertically */
}

.container {
    text-align: center;
}

.card {
    background-color: rgba(255, 255, 255, 0.8);
    margin: 20px;
    padding: 40px;
    border-radius: 20px;
}

/* @media (min-width: 700px) {
    .card {
        width: 50%;
    }
} */


.logo {
    width: 200px;
}

.restaurant-name {
    margin-top: 20px;
    font-size: 24px;
    font-weight: 700;
    /* Adjust font weight if needed */
}

.buttons {
    margin-top: 20px;
    /* Center-align the buttons horizontally */
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-3px);
    }

    100% {
        transform: translateX(0);
    }
}

.btn {
    display: flex;
    justify-content: center;
    /* Center-align content horizontally */
    align-items: center;
    /* Center-align content vertically */
    width: 100%;
    padding: 10px 20px;
    margin-bottom: 10px;
    background-color: #000000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
    /* Remove underline */
    font-weight: 500;
    /* Adjust font weight if needed */
}

.btn:hover {
    /* Add animation properties */
    animation: shake 0.5s ease-in-out;
    background-color: #e70ead;
}

.btn img {
    width: 20px;
    margin-right: 10px;
}

.follow-us {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    text-decoration: none;
    font-size: 16px;
}

.follow-us:hover {
    animation: shake 0.5s ease-in-out;
}

.follow-us a {
    color: #000000;
    text-decoration: none;

}

.follow-us img {
    width: 30px;
    margin-right: 10px;
}