body{
    font-family: Arial, Helvetica, sans-serif;
    margin:0;
    border:0;
    background: #222;
}
.title{
    background-image: url("images/bg.svg");
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100vh;
    position: relative;
    margin: 0;
}
#content{
    width:  100%;
    height: 100%;
}
.spacer{
    height: 25%;
}
.logo{
    background-image: url("images/logo.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    /*position: absolute;*/
    margin-left:25%;
    width: 50%;
    height: 50%;
    /*animation:spin 40s linear infinite;*/
}
@keyframes spin { 
    100% { transform:rotate(360deg); } 
}
.name{
    background-image: url("images/voidleap.studio.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    /*position: absolute;*/
    margin-left:25%;
    width: 50%;
    height: max(3%, 30px);
}
.links{
    margin-top: 70px;
    margin-bottom: 70px;
    color: white;
    width: 100%;
    text-align: center;
}
.links a{
    color: white;
    text-decoration: underline;
}