
body {
    width: 80%;
    margin: auto;
    text-align: left;
    font-family: Arial;
}


.container {
  display: flex;
  justify-content: center; /* Centers items horizontally */
  /* Optional: align-items: center; to center vertically if the container has a defined height */
}


.image-container img {
    width: 100%;
    height: auto;
}

.image-container {
    width: 50%;
    margin: auto;
    text-align: center;
}

.box-container {
    display: flex;
    gap: 20px;          /* space between boxes */
    justify-content: center; /* optional */
}


.text-box {
    max-width: 600px; /* Sets the maximum width of the box */
    margin: 0 auto; /* Centers the box on the page */
    padding: 10px; /* Adds space between the text and the border */
    //border: 1px solid black; /* Optional: adds a visible border */
    //background-color: LightYellow; /* Optional: adds a background color */
    word-wrap: break-word; /* Ensures long words do not break the layout */
    justify-content: left;
}

.text-box-border {
    max-width: 400px; /* Sets the maximum width of the box */
    //margin: 0 auto; /* Centers the box on the page */
    padding: 5px; /* Adds space between the text and the border */
    //border: 1px solid black; /* Optional: adds a visible border */
    //background-color: LightYellow; /* Optional: adds a background color */
    word-wrap: break-word; /* Ensures long words do not break the layout */
    justify-content: left;
    border: 2px solid #000;
}

a {
    color: black;
}

a:link {
    color: black;
}

a:visited {
    color:black;
}

a:hover {
    color: blue;
}

a:active {
    color:blue;
}