* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #f7e3c3;
    font-family: Arial, sans-serif;
}

.container {
    width: 80%;
    margin: 60px auto;
    text-align: center;
}

h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

p {
    font-size: 20px;
    margin-bottom: 30px;
}

.pizza-box {
    width: 500px;
    height: 500px;
    margin: 0 auto 30px auto;
    background-color: #d6a26a;
    border: 8px solid #8b5a2b;
    padding: 30px;
}

.pizza {
    width: 100%;
    height: 100%;
    background-color: #f4c36a;
    border-radius: 100%;
    position: relative;
}

/* pepperoni */
.pepperoni {
    width: 50px;
    height: 50px;
    background-color: firebrick;
    border-radius: 100%;
    position: absolute;
    top: 100px;
    left: 120px;
    display: none;
}

/* mushroom */
.mushroom {
    width: 50px;
    height: 30px;
    background-color: tan;
    border-radius: 50px 50px 0 0;
    position: absolute;
    top: 180px;
    right: 100px;
    display: none;
}

/* olive */
.olive {
    width: 30px;
    height: 30px;
    border: 6px solid black;
    border-radius: 100%;
    position: absolute;
    bottom: 140px;
    left: 180px;
    display: none;
}

/* green pepper */
.pepper {
    width: 60px;
    height: 15px;
    background-color: green;
    border-radius: 20px;
    rotate: 30deg;
    position: absolute;
    bottom: 120px;
    right: 120px;
    display: none;
}

button {
    padding: 15px 20px;
    margin: 10px;
    font-size: 18px;
    border: 3px solid black;
    background-color: white;
}