body {
    margin: 0;
    padding: 0;
    background-color: black;
    background-image: url("./images/3pattern.png");
    background-repeat: repeat-x;
    background-position: 0 74px;
    top: -10px;
    backdrop-filter: blur(10px) brightness(140%) saturate(110%);
}

section {
    width: 100%;
    border: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
}

#content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#main {
    width: 100%;
    background-color: #455772;
    border-bottom: black 3px solid;
    box-shadow: 0 5px 17px #0a0a0a;
}

article {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: Arial, sans-serif;
    color: white;
}

ul {
    padding-left: 0;
    list-style: none;
    flex-wrap: wrap;
}

li {
    display: flex;
    align-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding: 25px 5% 25px 6%;
}
li a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;

    color: white;
    text-decoration: underline dotted aqua;
}
li a span {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    height: 50px;
    width: 50px;
    margin-right: 20px;
}
li a span img {
    filter: brightness(100%) grayscale(100%)
}

#logo {
    padding: 25px;
}

.ani:hover {
    animation-duration: 0.8s;
    animation-name: hoverOn;
    color: aqua;
}

.ani:hover img {
    animation-duration: 0.8s;
    animation-name: hoverOn;
    filter: none;
}

@keyframes hoverOn {
    from {
        color: white;
        text-decoration: underline dotted aqua;
        filter: brightness(100%) grayscale(100%);
    }

    to {
        color: aqua;
        text-decoration: underline dotted aqua;
        filter: none;
    }
}

@media screen and (max-width: 400px) {
    #logo {
        max-width: 90%;
    }
}

