/* Reset some basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
        background: url('images/backgoundlab5.png') no-repeat center center/cover;
}
/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #111;
}

.navbar h1 {
    color: #fff;
    font-size: 24px;
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar ul li {
    margin-left: 20px;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navbar ul li a:hover {
    color: #f0a500;
}
/* Cards */
.cards {
    padding: 40px 20px;
    text-align: center;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    width: 220px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card h3 {
    margin: 15px 0;
}

.card button {
    padding: 10px 20px;
    border: none;
    background-color: #333;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.card button:hover {
    background-color: #555;
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
}

.footer-container div {
    width: 200px;
}

.footer-logo h2 {
    margin-bottom: 10px;
}

.footer-links h3,
.footer-quick-links h3 {
    margin-bottom: 15px;
}

.footer-quick-links ul {
    list-style: none;
    padding: 0;
}

.footer-quick-links li {
    margin-bottom: 10px;
}

.footer-quick-links a {
    text-decoration: none;
    color: #ddd;
    transition: color 0.3s;
}

.footer-quick-links a:hover {
    color: #fff;
}

button {
    padding: 10px;
    background-color: #444;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #666;
}
