html,
body {
    min-height: 100%;
    cursor: url("jeanclaude/patte.png"), auto;
}

body {
    background: linear-gradient(90deg, rgb(253, 152, 0) 0%, rgb(234, 255, 0) 33%, rgb(255, 0, 0) 66%, rgb(82, 26, 212) 100%);
    display: block;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    width: 100%;
    margin: 0;
}

img {
    border: 5px solid #000000;
    max-width: 350px;
}

.myButton {
    box-shadow: inset 0px 50px 12px -13px #eb0c00;
    background: linear-gradient(to bottom, #ff1100 5%, #e60c00 100%);
    background-color: #ff1100;
    border-radius: 20px;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-family: Arial;
    font-size: 19px;
    padding: 18px 38px;
    text-decoration: none;
    text-shadow: 3px -6px 3px #ff1100;
}

.myButton:hover {
    background: linear-gradient(to bottom, #e60c00 5%, #ff1100 100%);
    background-color: #e60c00;
}

.myButton:active {
    position: relative;
    top: 1px;
}


#menu {
    display: none;
    align-items: center;
}

#menu a {
    text-decoration: none;
    color: #000000;
    padding: 10px;
    display: block;
}

#menu a:hover {
    text-decoration: underline;
}

/* toujours garder en bas du fichier */
@media screen and (min-width: 1000px) {
    #burger {
        display: none;
    }

    #menu {
        display: flex;
        justify-content: space-between;
    }
}