body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4e4bc;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
}

.logo {
    max-width: 200px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    color: #8b4513;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 20px;
}

.sandwich {
    position: relative;
    width: 400px;
    height: 200px;
    margin-top: 20px;
}

.layer {
    position: absolute;
    width: 100%;
    left: 0;
}

.bread-top {
    height: 40px;
    background-color: #d2b48c;
    border-radius: 10px 10px 0 0;
    top: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.prosciutto {
    height: 30px;
    background-color: #a52a2a;
    top: 40px;
}

.mozzarella {
    height: 30px;
    background-color: #f0e68c;
    top: 70px;
}

.basil {
    height: 20px;
    background-color: #228b22;
    top: 100px;
}

.bread-bottom {
    height: 40px;
    background-color: #d2b48c;
    border-radius: 0 0 10px 10px;
    top: 120px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.construction-sign {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffeb3b;
    padding: 10px 20px;
    border: 2px solid #8b4513;
    border-radius: 5px;
    font-size: 1.5em;
    color: #8b4513;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    z-index: 2;
}
