body, html {
    padding: 0;
    margin: 0;
    background-color: #2f5f5a;
    font-family: 'Open Sans', sans-serif;
    color: aliceblue;
}

main {
    z-index: 1;
    position: relative;
}

header {
    margin-top: 1em;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header > img {
    width: 6em;
    height: 6em;
    border-radius: 100%;
    border: 1px solid aliceblue;
    box-shadow: rgb(28 32 93 / 24%) 0px 2px 8px 0px;
}

header > h1 {
    display: inline-block;
    font-size: 0.8em;
    font-weight: bold;
    border-radius: 1em;
    background-color: #000a;
    color: aliceblue;
    padding: 0.3em 0.6em;
    border: 1px solid aliceblue;
    backdrop-filter: blur(10px) contrast(180%);
    -webkit-backdrop-filter: blur(10px) contrast(180%);
}

ul {
    box-sizing: border-box;
    list-style: none;
    margin: 0 auto;
    padding: 2em;
    max-width: 480px;
}

ul > li {
    background-color: #fffa;
    backdrop-filter: blur(10px) contrast(180%);
    -webkit-backdrop-filter: blur(10px) contrast(180%);
    border-radius: 10em;
    padding: 1em;
    margin: 1.4em 0;
    box-shadow: rgb(28 32 93 / 24%) 0px 2px 8px 0px;
}

ul > li > a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
}

ul > li > a > img {
    width: 1.5em;
    height: 1.5em;
}

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

#vanta {
    z-index: 0;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

}

footer {
    position: relative;
    display: flex;
    flex-direction: column;
    font-size: 0.7em;
    justify-content: baseline;
    align-items: center;
    text-align: center;
    bottom: 0.3em;
    width: 100%;
}

footer > p {
    margin: 0;
    padding: 0;
}