/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: Arial, sans-serif;
    color: #FFFFFF;
    background-color: #333333;
}

/* Top Bar with Flags and Login */
.top-bar {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #444;
}

.flags img {
    width: 24px;
    height: 16px;
    margin-left: 5px;
}

/* Login form styling */
.login {
    display: flex;
    align-items: center;
    gap: 10px;
}

.login label {
    font-size: 12px;
    color: #FFFFFF;
}

.login input {
    width: 80px;
    padding: 5px;
    font-size: 12px;
    color: #333;
}

.login-btn {
    background-color: #fff;
    border: 1px solid #333;
    padding: 5px 10px;
    font-size: 12px;
    cursor: pointer;
}

/* Main Content */
.main-content {
    text-align: center;
    padding: 100px 20px;
    background-color: #333333;
}

.main-content h1 {
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 5px;
}

.main-content h2 {
    font-size: 24px;
    color: #D7C27E;
    font-weight: bold;
    margin-top: 10px;
}

/* Footer */
footer {
    background-color: #FFFFFF;
    color: #333333;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    width: 80px;
    height: auto;
}

.footer-logo p {
    color: #333333;
    font-size: 14px;
    margin-top: 5px;
}
/* Make the body a flex container to align items */
body {
    font-family: Arial, sans-serif;
    color: #FFFFFF;
    background-color: #333333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

/* Allow the main content to grow and fill available space */
.main-content {
    text-align: center;
    background-color: #333333;
    flex: 1; /* Allows the content to take up available space */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers content vertically */
    align-items: center; /* Centers content horizontally */
    padding: 20px;
}

.main-content h1 {
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 5px;
}

.main-content h2 {
    font-size: 24px;
    color: #D7C27E;
    font-weight: bold;
    margin-top: 10px;
}

/* Footer locked at the bottom */
footer {
    background-color: #FFFFFF;
    color: #333333;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
