@charset "utf-8";

html {
    background: linear-gradient(-45deg,
            rgb(255, 51, 0),
            rgb(255, 230, 0),
            rgb(0, 255, 13),
            rgb(0, 4, 255));
    background-size: 500% 500%;
    animation: 8s animate linear infinite;
}

h1,
h2 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

div.pagebody {
    text-align: center;
    padding: 10px;
}

h1#title {
    text-decoration: underline;
    font-size: 30px;
    margin-bottom: 50px;
    text-align: center;
}

nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
    margin: 10px;
    list-style: none;
}

nav li {
    padding: 2px;
}

nav a {
    text-decoration: none;
    font-weight: bold;
    color: black;
    padding: 4px;
}

nav a:hover {
    color: blue;
}

.partners {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.partner {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    padding: 18px;
    border: 0px solid black;
    transform: scale(1, 1) translateY(0px);
    transition: transform 0.2s;
    background: linear-gradient(-135deg,
            rgb(216, 7, 7),
            rgb(80, 82, 199),
            rgb(225, 0, 255));
    background-size: 300% 300%;
    animation: 3.5s infinite linear animate;
    border-radius: 40px;
    margin: 25px;
    cursor: pointer;
}

.partner:hover {
    transform: scale(1.2, 1.2) translateY(-15px);
}

img {
    border-radius: 20px;
}

div.partners>a {
    color: black;
    text-decoration: none;
    transition: all 0.5s linear;
    cursor: pointer;
}

div.partners>a:hover {
    color: aqua;
}