@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

html, body {
    animation: fadeIn 0.25s ease;
    font-family: "IBM Plex Serif", serif;
    margin: 0;
    height: 100%;
    background-color: #F5F5F5;
    font-size: 16px;
    font-weight: 300;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #111;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

a {
    text-decoration: none;
    color: black;
}

a:hover {
    color: #2c5282;
}

ul {
    list-style: none;
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.networks ul {
    padding: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
