@import url('https://fonts.googleapis.com/css2?family=Anta&display=swap');

.anta-regular {
    font-family: "Anta", sans-serif;
    font-weight: 400;
    font-style: normal;
}

@keyframes Artemis {
    from {
        color: white;
    }

    to {
        color: #D92906;
    }
}

html {
    min-height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    font-family: "Anta";
    background: #C0C0C0;
    background: linear-gradient(180deg, rgba(192, 192, 192, 1) 0%, rgba(96, 96, 96, 1) 100%);
    padding-left: 25px;
    padding-right: 25px;
    color: white;
    position: relative;
    cursor: crosshair;
}

h1 {
    font-size: 48px;
    text-align: center;
    animation-name: Artemis;
    animation-duration: 2s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

p {
    font-size: 24px;

}

a {
    font-size: 20px;
    color: rgb(255, 166, 0);
    text-align: center;
}

a:hover {
    color: red;
}

img {
    width: 40dvw;
    padding: 20px;
}

footer {
    text-align: center;
    clear: both;
}

.italique {
    font-size: 18px;
    font-style: italic;
    text-align: center;
    color: white;
}

.spacer {
    height: 50px;
}

#divimage{
    display: flex;
    flex-direction: row;
    margin: auto;
}

#divtable {
    text-align: center;
    margin: auto;
}

@media only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {

    #divimage {
        display: flex;
        flex-direction: column;
        margin: auto;
    }

    img {
    width: 70dvw;
}

}