body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  background-color: #181818;
}

#message-container, #image-container {
      width: 100%;
      text-align: center;
      margin-bottom: 20px;
  }
  #message {
      font-size: 4rem;
      color: white;
  }
  #daily-image {
      width: 800px;
      height: auto;
  }

  .home-button {
    position: absolute;
    top: 38px;
    right: 50px;
    background-color: #141414;
    color: #ffffff;
    padding: 10px;
    text-decoration: none;
    font-size: 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease-out;
  }

  .home-button:hover {
    background-color: #444;
    transition: background-color 0.3s ease;
  }

footer {
  position: absolute;
     top: 10px;
     padding: 10px;
     font-size: 100px;
     text-align: center;
     color: #ffffff;
}
