@media (max-width: 600px) {
    #fact {
        margin-top: 70px !important;
    }
    #refresh {
        width: 80% !important;
    }
}
@keyframes rotateIn {
    from {
        transform: rotate(0deg) scale(0);
    }
    to {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes getBig {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@keyframes press {
    from {
        transform: translateX(0px) translateY(0px);
    }
    to {
        transform: translateX(6px) translateY(8px);
    }
}

@keyframes flipRev {
    0% {
        transform: rotate(180deg) translateY(1000px);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes flip {
    0% {
        transform: rotate(180deg) translateY(-500%);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

#body {
    display: flex; 
    justify-content: space-around; 
    flex-direction: column; 
    min-height: 100vh; 
    width: 100vw; 
    overflow-x: clip; 
    overflow-y: auto;
    margin: 0px;
    align-items: center;
}

#fact {
    color: white; 
    font-size: 40px; 
    font-weight: 100; 
    margin-top: 0px; 
    margin-bottom: 50px;
    max-width: 100vw;
    min-width: 100vw;
    text-align: center;
    animation: getBig 2s ease-in-out;
    overflow-wrap: anywhere;
}

#return {
    border-top: 3px solid black; 
    background-color: black;
    position: fixed; 
    bottom: 0px; 
    font-size: large; 
    min-width: 100%; 
    height: 50px;
    display: flex; 
    justify-content: center; 
    align-items: center;
    overflow-x: clip;
}

#back {
    color: white; 
    cursor: pointer;
}

#refresh {
    background-color: black;
    color: white;
    border-radius: 30px;
    border: 3px solid black;
    box-shadow: 6px 8px black;
    transition: .25s;
    height: 60px;
    width: 200px;
    position: fixed;
    top: 5px;
    font-size: 20px;
    z-index: 100;
}

#refresh:hover, #refresh:focus {
    box-shadow: none;
    transform: translateX(6px) translateY(8px);
    animation: press .25s;
}

#loader {
    border: 3px solid black;
    border-radius: 10px;
    text-align: center;
    font-size: 20px;
    font-family: cursive;
}