

.imglogo {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    animation: imglogo 6s forwards linear;
    animation-delay: 1s;
    width: 160px;
    height: 120px;
    border-radius: 10px;
}
.imglogo:hover{
    box-shadow: 0 0 50px darkblue;
    transform: scale(1.05);
}

@keyframes imglogo {
    from {
        width: 160px;
        height: 120px;
    }
    to {

        width: 360px;
        height: 320px;
    }
}

img {
    width: 360px;
    height: 320px;
}


body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: darkblue;
    color: goldenrod;
    padding: 1rem;
    font-family: "Bell MT", serif;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 1rem;
    color: gold;
}

nav ul li a {
    color: palegoldenrod !important;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

main {
    padding: 2rem;
    background-color: white;
}

section {
    margin-bottom: 2rem;
}

footer {

    background-color: darkblue;
    color: goldenrod;
    padding: 1rem;
    font-family: "Bell MT", serif;
    position: absolute;
    text-align: center;
    bottom: 0;
    width: 100%;
}

a footer {
    color: goldenrod;
}

footer p {
    font-family: "Arial", serif;
}

footer img {
    height: 32px;
    width: 32px;

}

.police {
    font-family: "Georgia", serif;
    color: darkblue;
    background-color: goldenrod;
    padding: 30px;
}

.footer2 {
    position: relative;
}

.centrer {
    text-align: center;
}

a:link, a:visited {
    color: blue;
}

body {
    @media screen  and (max-width: 600px) {

        header {
            display: flex;
            flex-direction: column;
            justify-content: center;

        }

        ul {
            display: flex;
            flex-direction: column;
            margin-top: 0;
        }

        ul li {
            padding: 5px;
            justify-content: center;
        }

        ul li a {
            text-align: center;
            color: red;
        }


    }
}