@charset "utf-8";
/* CSS Document */

.history {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.history h2 {
    margin-top: 20px;
    font-size: 1.75em;
    color: #555;
}

.history p {
    line-height: 1.6;
    color: #666;
}

.history-images {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}

.history-images img {
    flex: 1;
    max-width: 30%;
    margin: 5px;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.history-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.main-archives {
    padding-top: 70px; /* Space for fixed header */
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px;
}

.archive-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

.archive-card {
    background-color: white;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin: 20px;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.archive-card h2 {
    color: #333;
    font-size: 20px;
	display: block;
	margin-bottom: 0px;
}

.archive-card h3 {
	font-size: 16px;
	margin-top: 0px;
}

.archive-card p {
    color: #666;
    font-size: 16px;
    padding: 0 10px;
}

.archive-image {
    width: 100%;
    height: 200px;
	object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0056b3;
}