/* 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('https://files.catbox.moe/115fg9.jpeg');
  background-size: cover;
background-position: center;
background-repeat: no-repeat;
}


.flex-container {
  max-width: 900px;  /* Set a max width */
  margin: 0 auto;     /* Center it horizontally */
  padding: 20px;      /* Add space inside */
  background-color: #FFFFFF;
  border: 1px solid #ccc;
  border-radius: 0px;
  text-align: center;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;         /* Allows wrapping to next line if needed */
  gap: 20px;
  padding: 20px;
  background: #f0f0f0;
}

.column {
  flex: 1 1 200px;         /* Flexible width with minimum 200px */
  background: #3498db;
  color: white;
  padding: 15px;
  border-radius: 0px;
  text-align: center;
}


.styled-hr {
  border: none;
  height: 1px;
  background-color: #333;
  margin: 20px 0;
  width: 100%;       /* Optional: control width */
}


body {
  color: black;
  font-family: verdana;
}

a:link {
  color: pink;       /* Normal, unvisited links */
}

a:visited {
  color: purple;     /* Visited links */
}

a:hover {
  color: orange;     /* When mouse hovers */
}

a:active {
  color: red;        /* While being clicked */
}


