* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}
/* Header */
.header {
    width: 100%;
    height: 80px;
    display: block;
    background-color: lightskyblue;
    position:fixed;
}

.inner_header {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0 auto;
    background-color: #082567;
}

.logo_container {
    height: 100%;
    display: flex;
    align-items: center;
    float: left;
    padding-left: 10px;
}

.logo_image {
    height: 100%;
    max-height: 70px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    padding-right: 10px;
}

.logo_container h1 {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 200;
    margin-left: 10px;
    display: flex;
}

.logo_container h1 span {
    font-weight: 800;
}

.navigation {
    float: right;
    height: 100%;
    display: flex;
    align-items: center;
}

.navigation li {
    margin-left: 30px;
}

.navigation a {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    text-decoration: none;
    padding: 10px;
    display: inline-block;
}

/* Landing Page Background */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/landing_page_background.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(5px) brightness(0.7);
    z-index: -2;
    transition: all 0.5s ease-in-out;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

/* General Body Styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background: none;
    overflow-x: hidden;
}

/* Main Content */
.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 100px);
}

.container {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 50px;
    border-radius: 10px;
    color: white;
}

.container-buttons {
    padding-top: 25px;
}

.btn {
    padding: 15px 30px;
    font-size: 1.2em;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px;
    text-decoration: none;
}

.btn:hover {
    background-color: #0056b3;
}


/* Authenticated Header */
.user_controls {
    float: right;
    height: 100%;
    display: flex;
    align-items: center;
    padding-right: 20px;
    gap: 15px;
}

.user_name {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

.logout_btn {
    padding: 8px 16px;
    font-size: 14px;
    background-color: #ff4d4d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.logout_btn:hover {
    background-color: #cc0000;
}
