body {
    font-family: 'Montserrat', sans-serif;
    background-color: #1a1a1a;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    overflow: hidden;
}

.container {
    padding: 2rem;
    border: 1px solid #444;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    background-color: #222;
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeIn 2s ease-in-out;
}

.restaurant-name {
    font-size: 1.8rem;
    font-weight: 400;
    color: #bbb;
    margin-bottom: 0.5rem;
    animation: fadeIn 2s ease-in-out 0.2s;
    animation-fill-mode: both;
}

p {
    font-size: 1.2rem;
    font-weight: 300;
    color: #aaa;
    margin: 0.5rem 0;
    animation: fadeIn 2s ease-in-out 0.5s;
    animation-fill-mode: both; /* Keep state after animation */
}

.sub-text {
    font-size: 1rem;
    color: #888;
}

.patience {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 2rem;
    color: #777;
}


.utensils {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-fork-knife {
    font-size: 3.5rem;
    color: #999;
    display: inline-block;
    animation: wobble 2.5s infinite ease-in-out;
}

.corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-style: solid;
    border-color: #666;
    opacity: 0;
    animation: fadeInCorner 2.5s ease-in-out 1s forwards;
}

.top-left {
    top: 20px;
    left: 20px;
    border-width: 2px 0 0 2px;
}

.top-right {
    top: 20px;
    right: 20px;
    border-width: 2px 2px 0 0;
}

.bottom-left {
    bottom: 20px;
    left: 20px;
    border-width: 0 0 2px 2px;
}

.bottom-right {
    bottom: 20px;
    right: 20px;
    border-width: 0 2px 2px 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInCorner {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes wobble {
    0%, 100% {
        transform: rotate(0deg);
    }
    15% {
        transform: rotate(-5deg);
    }
    30% {
        transform: rotate(5deg);
    }
    45% {
        transform: rotate(-3deg);
    }
    60% {
        transform: rotate(3deg);
    }
    75% {
        transform: rotate(-1deg);
    }
}
