@font-face { font-family: "Futura"; src: url("./FuturaLT-Heavy.ttf") format("truetype"); } body{ position:absolute; margin-top: 10px; font-family: "Futura"; } footer{ position: fixed; bottom: 0px; width:100%; height: 75px; display: flex; justify-content: space-around; } .slidefadein { opacity: 0; transform: translateY(100px); animation: slideAndFade 0.5s ease-in-out forwards; } @keyframes slideAndFade { to { opacity: 1; transform: translateY(0); } }