/* General Reset & Background */
body {
    font-family: 'Trebuchet MS', sans-serif;
    color: aliceblue;
    margin: 0;
    padding: 0;
    background: url('img/bg.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Header Section */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 10px;
}

.logo h2 {
    margin: 0;
    color: white;
}

.navbar {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar li a {
    color: white;
    text-decoration: none;
    font-size: 20px;
}

.navbar li a:hover {
    text-decoration: underline;
}

.actions {
    display: flex;
    gap: 10px;
}

.btn {
    background-color: black;
    color: white;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    border: none;
}

.btn:hover {
    background-color: gray;
}

/* Container Section */
.container {
    border: 2px solid white;
    margin: 90px auto;
    padding: 94px;
    width: 50%;
    border-radius: 28px;
    background-color: rgba(255, 255, 255, 0.3);
}

.container h1 {
    text-align: center;
    margin-bottom: 20px;
    color: white;
}

/* Make the body take full height and push footer down */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Make main content area expand */
.container {
    flex: 1;
}

/* Footer stays at bottom */
footer {
    text-align: center;
    padding: 20px;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
}


/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 80%;
    }

    .logo img {
        width: 80px;
        height: 80px;
    }

    .navbar li a {
        font-size: 16px;
    }

    .btn {
        font-size: 16px;
        padding: 6px 12px;
    }
}

