/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f3e9d2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    color: #333;
}

.header h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

.header h2 {
    font-size: 2em;
    color: #e07a5f;
    animation: blink 1.5s infinite alternate;
}

@keyframes blink {
    from { opacity: 1; }
    to { opacity: 0.3; }
}

.animation-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 2em auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
}

/* Plate Styling */
.plate {
    background-color: #ffffff;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    position: relative;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

/* Food Items */
.egg {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: #fff7b2;
    border-radius: 50%;
    top: 40px;
    left: 20px;
}

.egg::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #ffd966;
    border-radius: 50%;
    top: 12px;
    left: 12px;
}

.bacon {
    position: absolute;
    width: 60px;
    height: 15px;
    background-color: #d26a3c;
    border-radius: 15px;
    top: 80px;
    left: 60px;
}

.toast {
    position: absolute;
    width: 40px;
    height: 30px;
    background-color: #edc190;
    border-radius: 5px;
    top: 60px;
    left: 40px;
}

.info p {
    font-size: 1.2em;
    margin: 0.5em 0;
}
