@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    color: white;
}

body {
    background-color: #1a1a1a;
}

span {
    content: "\2713";
}

.outerBox {
    min-width: 100vw;
    min-height: 90vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer {
    min-width: 100vw;
    min-height: 10vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.centeredBox {
    text-align: center;
}

.logo {
    width: 40%;
    animation: animation infinite 3s backwards;
}

.footer {
    position: absolute;
    justify-content: center;
}

@keyframes animation {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}