/* style.css */

body {
            background-color: black;
            color: white;
            font-family: Arial, sans-serif;
            text-shadow: 0px 0px 0px white;
            margin: 0;
            padding: 20px;
            background-size: 1600px 800px;
            background-position: center center;
            background-attachment: fixed;
            
        }
img {
    max-width: 100%;
    height: auto;
    width: 600px;
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline; /* Add underline on hover */
    color: #ffa500; /* Change the link color on hover */
}