@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@400;600&display=swap');


* { /* ELIMINA I MARGINI E SCEGLIE IL FONT DELLA PAG */
    margin: 0;
    font-family:'Prompt', sans-serif;
    font-weight: 600; 
    box-sizing: border-box;
}

html {
    background: linear-gradient(to bottom,#eee076, #deaa76);
    background-repeat: no-repeat;
    background-size: cover;
}

html, body {
    padding: 0;
    overscroll-behavior: contain;
    overflow-x: hidden;
    overscroll-behavior: none;
}


header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background-color: rgb(231, 143, 18);
    color: white;
    font-size: 12px;
}

header .centro {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

header #logo {
    margin-top: 24px;
    position: fixed; 
    top: 0;
    margin-left: 10px;
    z-index: 1000;
    height: 55px;
}

#menuIcon {
    filter: invert(100%);
    transition: 0.3s;
    height: 15px;
    width: 20px;
    margin-right: 6px;
    margin-top: 2px;
}

#menuIcon:hover {
    filter: invert(0%);
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: white;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 13px;
}