body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #2b2b2b;
    color: #ffffff;
}

header {
    background-color: #27ae60;
    color: white;
    padding: 1em 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-right: 1em;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #2ecc71;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1em 0;
}

main {
    padding: 2em 0;
}

section {
    margin-bottom: 2em;
}

section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1em;
}

.card {
    background-color: #34495e;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card img {
    width: 100%;
    height: auto;
    border-top-left-radius: 1em;
    border-left: 0em;
    margin: 1em;
}

.card h3 {
    margin: 0.5em 0;
}

.card p {
    padding: 0 1em 1em;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.update-list {
    padding-left: 1em;
}

.update {
    margin-bottom: 1em;
    padding: 1em;
    background-color: #3498db;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s, box-shadow 0.3s;
}

.update:hover {
    background-color: #2980b9;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

footer {
    background-color: #27ae60;
    color: white;
    text-align: center;
    padding: 1em 0;
    position: relative;
    width: 100%;
    bottom: 0;
}
.img{
    display: flex;
    align-items: center;
    justify-content: center
    ;height: 100%;
    height: 400px;
    width: 800px;
}