
body {
    display: flex;
    flex-direction: column; /* Arrange sections vertically */
    min-height: 100vh; /* Ensure body covers full viewport height */
    margin: 0;
    font-family: sans-serif;
}

.wrapper {
    flex: 1 0 auto; /* Allow the wrapper to grow and push the footer down */
}

.container {
    width: 50%; 
    margin: 0 auto; 
    text-align: left;
    padding: 20px; 
}

.container .article-image {
    width: 350px; /* Adjust the width as needed */
    height: 300px; /* Adjust the height as needed */
    border-radius: 10px;
    align-items: center;
    margin-top: 10px;
    margin-left: 32%;
}

.container h2 {
    text-align: center;
}

.container h4 {
    text-align: right;
}

.container p {
    text-indent: 2em;
}

.dfont {
    font-weight: bold;
}

.header-content {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    width: 100%;
}

header, footer {
    width: 100%; 
    max-width: 100%;
    margin: 0;
/*    margin: 0 auto; 
    padding: 20px;*/
    text-align: center; 
    background-color: #f2f2f2;
}

footer {
    height: 20%;
}

/* Add more styles as needed for specific elements within each section */
.logo {
    width: 100px; /* Adjust width as needed */
    height: auto;
    margin-right: 10px;
    margin-left: 50px;
    margin-top: 10px;
    resize: both; 
    overflow: auto; 
}

.logo-text {
  font-family: 'mclaren', cursive;
  font-size: 15px;
  color: #006680; 
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-left: 40px;
}

dl, dt {
    line-height: 1.8; /* Adjust the value as needed */
}

.container dd {
	padding-left: 20px;
}

.container .newline::before {
	content: '* ';
	padding-left: 40px;
}

.container .innewline::before {
	content: '- ';
	padding-left: 60px;
}

.footer p {
    line-height: 0.5;
}

dt::before {
    content: "\2022"; /* Unicode bullet point character */
    margin-right: 5px; /* Add some space between the bullet and the text */
    padding-left: 30px; /* Adjust padding as needed */
    list-style-type: square;
    color: #006680;
}
  
.space {
    margin: 50px;
    align-items: center;
}
/* ------------------------------------------------------- */
.back-to-top {
    display: inline-block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
    background-color: #007bff; /* Blue background */
    color: white;
    text-decoration: none;
    font-size: 20px;
    border-radius: 20%; /* Make it circular */
    opacity: 0.7; /* Slightly transparent */
    transition: opacity 0.3s; /* Smooth transition on hover */
  }
  
  .back-to-top:hover {
    opacity: 1; /* Fully opaque on hover */
  }
