@font-face{
    font-family: 'Alfa Slab One';
    src: url(assets/AlfaSlabOne.woff);
}
@font-face{
    font-family: 'Tourney';
    src: url(assets/Tourney.woff);
}
body{
    background-image: url(/assets/disk.png);
    background-size:     cover; 
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: top;
    image-rendering: crisp-edges;
    padding-left: 10%;
    padding-right: 10%;

    color: rgb(196, 196, 196);

}
.content{
    background-color: rgba(0, 0, 0, 0.6);
    font-size: 20px;
    color:#ffae00;
    text-align: left;
    font-family: 'Courier';
    font-weight: bold;
}
.description{

    text-align: center;

}
.title{
    font-size: 70px;
    color:#ffae00;
    text-align: center;
    font-family: 'Tourney';
}
.roygbiv {
  animation: color-change 0.3s infinite;
}

@keyframes color-change {
  0% { color: red; }
  14% { color: orange; }
  28% { color: yellow; }
  42%{ color: rgb(157, 255, 0); }
  56%{ color: rgb(0, 225, 255); }
  70%{ color: rgb(55, 0, 255); }
  84%{ color: rgb(255, 0, 234); }
}