ul {
    list-style-type: none;
}

body {
        background: #030010;
        background-image: url('wallpaper.jpeg');
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;
	background-position: center;
        color: white;
    }
    
    h1 {
        text-align: center;
    }
    
    .footer {
        width: 100%;
        height: 40px;
        text-align: center;
        position: fixed;
        bottom: 0;
        left: 0;
        background: #181818;
        margin: 0;
    }
    
    .main {
        padding-top: 200px
    }
    
    a {
        color: white;
    }
    .loader {
      border: 16px solid #f3f3f3; /* Light grey */
      border-top: 16px solid #3498db; /* Blue */
      border-radius: 50%;
      width: 40px;
      height: 40px;
      animation: spin 2s linear infinite;
    }
    
    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
