body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(10px);
    z-index: -1;
}

header, main, footer {
    position: relative;
    z-index: 1;
}

header {
    background-color: rgba(2, 167, 233, 0.8);
    color: #fff;
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

nav ul li a.login-button {
    background-color: #ff6b6b;
    padding: 5px 10px;
    border-radius: 5px;
}

main {
    padding: 20px;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
}

section {
    margin-bottom: 40px;
}

section h2 {
    color: #fff;
}

section p {
    color: #fff;
}

section img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 20px;
}

footer {
    background-color: rgba(2, 167, 233, 0.8);
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    height: 40px;
    bottom: 0;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

form label {
    margin-top: 10px;
}

form input {
    padding: 5px;
    margin-top: 5px;
    width: 200px;
}

form button {
    margin-top: 20px;
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 200px;
}

form p {
    margin-top: 10px;
}




