body, html {
  margin: 0;
  padding: 0;
  height: 100%;
}

.background {
  background-image: url('images/backgroundsl.png');
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.slider {
  text-align: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  height: 340px;
  margin: auto;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: fixed;
    bottom: 0;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    background-color: rgba(233, 232, 248, 0);
    padding: 1px;
    border-radius: 8px;
    font-size: 14px;
    text-shadow: 1px 1px 1px white;  /*text-shadow: h-shadow v-shadow blur-radius color;*/
}

img {
  max-width: 80%;
  height: 180px;
  border: 0px solid #ddd;
  border-radius: 4px;
  padding: 1px;
}

@media (max-width: 768px) {
  .background {
    background-attachment: scroll;
  }
}



.button, #alphanumericButton, #racingButton, #warningButton, #weatherButton {
    margin: 5px;
    padding: 1% 2%;
    background-color: #007bff;
    color: white;
        text-shadow: 1px 1px 1px black;  /*text-shadow: h-shadow v-shadow blur-radius color;*/
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12pt; /*  3vw = Adjust font size based on the width of the viewport */
}