Glowing Icon Website | HTML CSS (Output+Code)

 OUTPUT Code: (index.html) <html>     <head>         <title>Tech Website</title>`         <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">         <style> * { box-sizing: border-box; } body { padding: 0px; margin: 0px; background-color: black; font-family: Arial, Helvetica, sans-serif; } .background1 { overflow: hidden; display: flex; width: 100%; } .background1 i {     top: -50px;     color: rgba(80, 80, 80, 0.20);     padding: 10px;     font-size: 58px;     transition: 1s;     white-space: nowrap;     animation: texta 80s linear infinite;     animation-delay: -1000s;     animation-duration: 30s; } .background1 i:hover {     transition: 0s; ...