@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:wght@700&display=swap');
canvas{
    background-color: black;
}
body{
    color: #fff;
    position: fixed;
    margin: 0;
}
.apps{
    position: fixed;
    bottom: 0;
    left: 0;
    margin: 0;
    animation: in .5s;
    padding: 10px;
    opacity: 0;
    transition: all 1s;
}
.apps:hover{
    opacity: 1;
}
main{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
h1{
    font-size: 6vw;
    margin: 0;
    font-family: 'Anonymous Pro', monospace;
}
ul{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
li{
    margin: 0 20px;
}
li img{
    width: 4vw;
    color: #fff;
}
@keyframes in {
    from{
    opacity: .5;
    }
    to{
    opacity: 0;
    }
}