body{
    background-color: rgb(32, 32, 32);
    margin: 0px;
    text-align: center;
}
#fact{
    color: white;
    font-family: arial;
    font-size: larger;
    font-weight: bold;
}
#image{
    max-width: 1000px;
    max-height: 500px;
}
#newFact{
    width: 120px;
    height: 40px;
    border-radius: 5px;
    border: transparent;
    color: black;
    font-family: arial;
    font-size: medium;
    transition: .2s;
    box-shadow: 1px 2px 5px black;
    margin-top: 2vh;
}
#newFact:hover{
    cursor: pointer;
    transform: scale(1.05);
    transition: .2s;
    box-shadow: 1px 3px 5px black;
}
#newFact:active{
    transform: scale(0.98);
    transition: .2s;
}
#counter{
    color: white;
    font-family: arial;
    margin-top: 5vh;
}
#counterValue{
    font-weight: bolder;
    font-size: large;
}
#footer{
    position: absolute;
    left: 10px;
    bottom: 5px;
    font-family: arial;
    font-weight: 600;
    color: rgb(130, 130, 130);
    font-size: small;
}