/* Reset CSS */
body, * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fff;
}

/* Wrapper styles */
#wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 10px;
}

/* Title styles */
#wrapper #title {
    height: 150px;
    color: #fff;
    text-shadow: 3px 3px 3px #000;
    border: thin solid #fff;
    background-image: url(images/image.png);
    background-size: cover;
    background-position: center;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#wrapper #title h1 {
    font-size: 2.5rem;
    margin: 0;
}

/* Logo styles */
#logo {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

#logo img {
    height: 140px;
    width: 140px;
    margin: 5px;
}

/* Media query to hide the logo on mobile screens */
@media (max-width: 767px) {
    #logo {
        display: none;
    }
}

#buttons {
    position: absolute;
    right: 10px;
    top: 15%;
    transform: translateY(-50%);
    display: flex;
    gap: 10px;
}

#buttons a {
    padding: 8px 16px;    
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 1.0rem;
    font-weight: bold;
    transition: background-color 0.3s;
}

#buttons a:hover {    
    zoom: 120%;
    color: #F00;
}

/* Header styles */
#header {
    height: 10px;
    background-image: url(images/image4.png);
}

/* Content area styles */
#contentarea {
    clear: both;
    padding: 20px 0;
}

/* Footer styles */

/* Column layout */   /* (for download Button) */
.column {
  float: left;
  width: 15%;
  padding: 1px;
   margin-bottom: 10px;
  text-align: center;    /* Center the images within each column */
}

/* Row layout to clear floats */
.row::after {
  content: "";
  clear: both;
  display: table;
}

/* Center the entire row */
.row {
  display: flex;
  justify-content: center; /* Align columns to the center */
}

#footer {
    max-width: 100%;
    clear: both;
    padding: 20px 10px;
    margin: 20px 0;
/*    font-weight: bold; 
    font-size: 14px; */
    font-family: Verdana, Geneva, sans-serif;

    color: #fff;
    background-color: #000;
}

@media (min-width: 768px) {
    #footer div {
        text-align: left;
    }
}

@media (max-width: 767px) {
    #footer div {
        text-align: center;
    }
}

/* Content typography */
h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 1.5em;
    margin-top: 0.5em;
}

h3 {
    font-weight: bold;
    margin-bottom: 0.5em;
}

p {
    line-height: 1.5;
    margin-bottom: 0.5em;
}

ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 1em;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Thumbs styles */
.thumbs {
    width: 100%;
    margin: 1px 0;
    border: thin solid #096fb7;
    border-radius: 3px;
    overflow: hidden;
}

@media (min-width: 600px) {
    .thumbs {
        width: 48%;
    }
}

@media (min-width: 900px) {
    .thumbs {
        width: 32%;
    }
}

.content {
    padding: 10px;
}

.content h3 {
    text-align: center;
    color: #170000;
    font-weight: bold;
    padding: 4%;
}

.content a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s, transform 0.3s;
}

.content a:hover {
    transform: scale(1.1);
    color: #800000;
}

.content img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

p {
    color: #090000;
}
