@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }

.body {
    width: 98vw;
    height: 98vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-family: "Roboto", sans-serif;
    color: #292959;
    animation: fadeIn 1s;
}

footer {
    width: 100%;
    height: 100px;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 32px;
    box-sizing: border-box;
    text-align: center;
    background-color: #292959;
    color: white;
    font-family: "Roboto", sans-serif;
    animation: fadeIn 5s;
}

a {
    color: white;
}