html, body { height: 100%; }

body {
    overflow:hidden;
    padding-top: 80px;
    align-items: center;
    background-color: #000000;
}
  
h1 {
    text-align: center;
    font-family: Crimson Text;
    font-size: 100px;
    color: #d3d3d3;
}

.desc {
    font-size: 20px;
}
  
.icons {
    text-align: center;
    display: inline-block;
    font-size: 50px;
    color: #d3d3d3;
    transition-duration: 0.3s;
}
  
.icons:hover {
    color: #808080;
    font-size: 75px;
}
  
.background {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}
