/* style.css */
body {
    font-family: Arial, sans-serif;
    background-color: #e0f7fa;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

nav {
    width: 100%;
    background-color: #b39ddb;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: green;
}

.container {
    background-color: #d1c4e9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    text-align: center;
}

h1 {
    color: #7e57c2;
}

p {
    color: #9575cd;
}

.clock-container {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.clock {
    font-size: 3em;
    margin-right: 20px;
    color: #673ab7;
}

.date {
    font-size: 1.5em;
    color: #9575cd;
    margin-top: 10px;
    text-align: center;
}

.stick-figure {
    margin-left: 20px;
}

.section {
    background-color: #f3e5f5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    width: 80%;
    text-align: center;
}

.wave {
    font-size: 1.5em;
}

.pizza-container {
    position: fixed;
    bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
}

#pizza {
    position: absolute;
    left: 0;
    transition: transform 5s linear;
}
