body {
    margin: 0;
    padding: 0;
    font-family: 'Arimo', sans-serif;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
}

nav {
    display: flex;
    justify-content: flex-end; /* Align items to the right */
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-left: 20px; /* Adjust as needed */
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

.logout button {
    background-color: #fff;
    color: #333;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.main-content {
    background-color: #f2f2f2;
    padding: 20px;
    display: flex;
}

/* Updated CSS for better styling of the picture and text */

.right-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-content img {
    max-width: 150%;
    max-height: 50vh; /* Set maximum height to 50% of viewport height */
}

.left-content {
    flex: 1;
    padding-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.enter-button {
    margin-top: 20px;
    text-align: center;
}

.enter-link {
    display: inline-block;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.enter-link:hover {
    background-color: #555;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 10px;
}

@keyframes fadeAndSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-slide-in {
    animation: fadeAndSlideIn 1s ease forwards;
}
