/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-image: url("/images/background.jpg");
  color: black;
  font-family: Verdana, Helvetica, sans-serif;
  text-align: center;
}
.container {
  width: 50%; /* Or any specific width */
  margin: 0 auto; /* Top/bottom margin 0, left/right margin auto */
}
img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
button
{
    background: linear-gradient(to bottom,  #b8e1fc 0%,#a9d2f3 10%,#90bae4 25%,#90bcea 37%,#90bff0 50%,#6ba8e5 51%,#a2daf5 83%,#bdf3fd 100%);
}