        body {
            font-family: sans-serif; /* Set the default font for the entire body to sans-serif */
        }

        .random-image {
            max-width: 100%;
            height: auto;
            margin-bottom: 10px;
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        td {
            padding: 8px;
        }

#refreshButton {
position: absolute;
top: 80%;
left: 50%;
transform: translate(-50%, -50%);
  padding: 10px 25px;
  text-align: center;
  color: white;
  display: inline-block;
  font-size: 32px;
  margin: 10px 2px;
  cursor: pointer;
  border: none;
  border-radius: 25px;
  background-color: deepskyblue;
        }

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: limegreen;
  color: black;

  text-align: center;
}

a:link, a:visited {
  color: white;
  text-decoration: none;
  font-size: 20px;
}
a:hover, a:active {
  color: red;
}

        #randomNumber {
            font-size: 10em;
            position: absolute;
            top: 30%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
