body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

#navigation {
    display: flex;
    border: grey solid 3px;
    border-radius: 2px;
    background-image: linear-gradient(darkgrey, lightgrey);
    box-shadow: black 0px 4px 7px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
}

#navigation a {
    font-size: 25px;
    padding: 10px;
    text-decoration: none;
    color: black;
}

#content {
    border: grey solid 3px;
    border-radius: 5px;
    width: 75%;
    background-image: linear-gradient(darkgrey, lightgrey);
    box-shadow: black 0px 4px 7px;
    padding: 20px;
    margin: 10px auto; /* ← this centers it horizontally */
}


#welcomebystickmans {
    background-image: linear-gradient(white, grey);
    padding: 5px;
    width: 500px;
    height: 200px;
}

.animation {
    margin: 10px;
    background-color: white;
    padding: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 200px;
    height: 200px;
    padding: 20px;
}

.animationthumb {
    border-radius: 2px;
    border: red solid 2px;
    width: 120px;
    height: 90px;
}

.displayflex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

#warning {
    background-image: linear-gradient(darkorange, red);
    margin-top: 10px;
    border: orange solid 5px;
    border-radius: 10px;
}