/* 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-color: #cdcdcd;
  color: white;
  font-family: sans-serif;
  margin: 1;

  line-height: 1.0;
  
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0px;
}


#link-container a {
    display: inline; /* or inline-block */
    margin-right: 0px; /* optional spacing */
    text-decoration: none;
}

img {
  width: 100%; /* Image will take 100% of the container's width */
  height: auto; /* Maintain aspect ratio */
}

.container {
  display: flex;
  gap: 0.625%;
}

a {
  flex: 1;
  text-decoration: none;
  outline-color: transparent;
  text-align: center;
  line-height: 2;
  color: #cdcdcd;
}

a:link,
a:visited,
a:focus {
  background: white;
  color: black;
}

a:hover {
  background: black;
  color: white;
}

a:active {
  background: grey;
  color: white;
  
  
}


a img { display: block; }


