body {
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    background-image: url("web_resources/background.png");
    background-position: top;
    overflow-x: hidden; /* Hide horizontal scrollbar */
    overflow-y: scroll; /* Add vertical scrollbar */
}

.page-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    /* Center the content vertically */
    min-height: calc(100vh - 50px);
}

.navigation-bar {
    background-color: #333;
    /* Background color for the navigation bar */
    color: white;
    /* Text color for the menu items */
}

.navigation-bar ul {
    list-style-type: none;
    /* Remove default list styles */
    padding: 0;
    margin: 0;
    display: flex;
    /* Display the menu items in a row */
}

.navigation-bar ul li {
    margin-right: 20px;
    /* Add spacing between menu items */
}

.navigation-bar ul li a {
    text-decoration: none;
    color: white;
}

.gif-container {
    /* border: 1px solid #ccc; */
    padding: 5px;
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
}

.gif-container img {
    width: 300px;
    height: 300px;
}

.meteor {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    /* adjust size as needed */
    height: 200px;
    background: url('web_resources/meteor.gif') center/cover no-repeat;
}

.meteor-logo {
    width: 50px;
    /* Adjust the size as needed */
    height: auto;
    /* Maintain aspect ratio */
    background-repeat: no-repeat;
    /* Prevent logo from repeating */
    background-size: 40% auto;
    background-position: left bottom;
    /* Adjust logo's vertical position */
}