/* styles.css */

body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #688567;
    color: white;
    text-align: center;
    padding: 30px 0;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

header h1 {
    margin: 0;
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
}

header img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    max-height: 80px; 
}

nav {
    background-color: #688567;
    padding: 10px 0;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #4caf50;
}

.main-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    padding: 20px;
    flex-grow: 1; 
}

.section-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
}

.section-box h2 {
    margin: 0;
}

.section-box p {
    margin: 10px 0;
}

.section-box:hover {
    transform: translateY(-5px);
}

.footer {
    background-color: #f0f0f0;
    color: #333;
    text-align: center;
    padding: 20px 0;
}

.footer p {
    margin: 0;
    background-color: #f0f0f0;
    color: #333;    
}