html { background-color: rgb(34, 34, 34); color: white; font-family: 'Open Sans', 'Droid Sans', Arial, sans-serif; } a { color: rgb(231, 76, 60); text-decoration: none; } a:visited { color: rgb(231, 76, 60); text-decoration: none; } .content { display: flex; flex-direction: column; align-items: center; justify-content: center; } .logo-container { width: 50%; height: 50%; padding: 2.5em; } .logo { animation: rotate 600s infinite; } @keyframes rotate { from { transform: rotate(0deg) } to { transform: rotate(360deg) } }