head, body{
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    color: #fff;

}
body{
    background: url(./images/background.jpg) no-repeat center center fixed;
    background-size: cover;
}
#vanta {
    z-index: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
main {
    position: relative;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 2s ease-in-out, filter 2s ease-in-out;
}
header{
    margin-top: 3em;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
header > img {
    width: 6em;
    height: 6em;
    border-radius: 100%;
    border: 1px solid white;
    box-shadow: rgba(255, 85, 85, 0.5) 0px 2px 8px 0px;
}
header > h1 {
    display: inline-block;
    font-size: 0.8em;
    font-weight: bold;
    border-radius: 1em;
    background-color: rgba(26, 26, 26, 0.6);
    color: #fff;
    border: 1px solid white;
    padding: 0.3em 0.6em;
    backdrop-filter: blur(10px) saturate(180%) contrast(110%);
    -webkit-backdrop-filter: blur(10px) saturate(180%) contrast(110%);
}
ul {
    box-sizing: border-box;
    list-style: none;
    margin: 0 auto;
    padding: 2em;
    max-width: 480px;
}
ul > li {
    background-color: rgba(255, 168, 168, 0.6);
    backdrop-filter: blur(10px) saturate(180%) contrast(110%);
    -webkit-backdrop-filter: blur(10px) saturate(180%) contrast(110%);
    border-radius: 10em;
    padding: 1em;
    margin: 1.4em 0;
    box-shadow: rgba(26, 26, 26, 0.5) 0px 2px 8px 0px;
}
ul > li > a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
}
a {
    color: white;
    text-decoration: none;
}
span {
    font-size: 10px;
    display: flex;
    flex-direction: column;
    text-align: center;

}
#footer{    
    position: relative;
    width:100%;
    margin-top: 2em;
}