html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    
    background-color: #000000;
    background-repeat: no-repeat;
    background-attachment: scroll;
    color: white;
    font-family: Tahoma, sans-serif;
    overflow-x: hidden; 
  }
  
.content {
    align-items: center;
    justify-content: center;
    text-align: center;
    
}
  
.center {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
  
.centered {
    text-align: center;
    
    flex: 0 1 auto;
    max-width: 100%;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
}
  
.link {
    font-size: calc(1.5vw + 1vh);
    color: white;
    font-family: 'Archimoto';
    text-decoration:none;
    display:inline;
    padding-right: 0.4vw;
    padding-left: 0.4vw;
}

@font-face {
    font-family: "Archimoto";
    src: url('archimoto.otf') format('opentype');
}