/* @import url('https://fonts.googleapis.com/css?family=Titillium+Web&display=swap'); */

body{
    background: #021733;
    padding: 0;
    margin: 0;
    overflow:hidden;
}
canvas{
    background: #021733;
}

.center {
    position: absolute;
    color:white;
    font-family: 'Titillium Web', sans-serif;
    opacity: 0.7;
    text-align: center;
    line-height: 80px;
    width: 400px;
    height: 200px;
    top: 50%;
    left: 50%;
    margin-top: -100px;
    margin-left: -200px;
    user-select: none;
    
    animation-name: enter;
    animation-duration: 2s;
    transition: opacity 2s ease-in-out;
}

.menu{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.link{
    padding-left: 10px;
    padding-right: 10px;
    text-decoration: none;
    color:inherit;
    transition: font-size 2s;
}

.link:hover {
    font-size: 27px;
}

.title{
    font-size: 30px;
}

.hidden{
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 2s, opacity 2s linear;
}

@keyframes enter {
    from { opacity: 0;}
    to {opacity: 0.7;}
  }