/* === Global Body Styles === */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f5f5f5;
}

/* === Header & Navigation === */
header {
    background: #333;
    padding: 10px;
}
.navbar a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
	font-weight: bold;
}
.navbar a:hover {
    text-decoration: underline;
}

/* === Main Content === */
main {
    padding: 20px;
}

/* === Footer === */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px;
}

/* === Centered Text === */
.center-text {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* === Background Image === */
.bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 20px;
}

/* === Gallery === */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
    justify-items: center;
    max-width: 1000px;
    margin: auto;
}
.gallery img {
    width: 100%;
    max-width: 250px;
    border-radius: 5px;
	border: 4px solid #333; 
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #444;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s, transform 0.1s;
}
.btn:hover {
    background: #666;
    transform: translateY(-2px);
}
.btn:active {
    transform: translateY(0);
}

/* === Card Style === */
.card {
    background: #8f9cae; /* Atom blue */
    border: 1px solid #0b1523; /* Corbeau border */
    padding: 30px;
    border-radius: 8px;
	margin-left: 50px;
	margin-right: 50px;
    margin-bottom: 20px;
}
.card h2 {
    margin-top: 0;
    color: #333; /* Carbon */
}
.card figure img {
	justify-content: center;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.card figure figcaption {
	text-align: center;
}

pre {
  white-space: pre-wrap; /* Preserves whitespace and enables wrapping */
  word-wrap: break-word; /* Ensures long words break to the next line */
  font-family: calibri;
  font-size: 16px;
}
