h1 {
    text-align: center;
    font-size: 40px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: rgb(236, 240, 8);
    
}

marquee{
    background-color: rgb(236, 178, 188);
    font-family:'Courier New', Courier, monospace;
    color:rgb(96, 96, 236);
    font-size: 25px;
}

#container {
    position: relative;
}

#logo {
    text-align: center;
    max-height: 300px;
}

#pizza-logo{
    width: 600px;
    height: 600px;
    margin-top: -210px;
}

html, body {
    margin: 0;
}

#start-menu {
    position: fixed;
    inset: 0; /* top:0; right:0; bottom:0; left:0 */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

#pizza-start-menu{
    display: block;
    position: static;
    width: 700px;
    max-width: 70vmin; /* scales with the viewport */
    height: auto;
    animation: rotate360 5s linear infinite;
}

#buttons {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

#start-button {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

#start-button-img{
    width: 200px;
    height: auto;
}

@keyframes rotate360 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#pizza-peel{
    z-index: 1;
}

#crust {
    z-index: 2;
    display:flex;
    justify-content: center;
    align-items: center;
}
