* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

main {
    display: flex; /* Use flexbox for centering */
    flex-direction: column; /* Stack items vertically */
    justify-content: center; /* Center items vertically */
    align-items: center; /* Center items horizontally */
    height: calc(50vh - 60px); /* Adjust height to account for the header */
    margin-top: 20px; /* Optional: Add some space above the main content */
}

body {
    font-family: Arial, sans-serif;
    color: white;
    background-image: url('Background.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    height: 100vh;
}

header {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    height: 60px; /* Set a fixed height for the navigation bar */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%; /* Ensure nav takes full height of header */
}

.logo {
    display: flex;
    align-items: center; /* Center the logo vertically */
}

.logo-image {
    height: 300px; /* Adjust height as needed */
    width: auto; /* Maintain aspect ratio */
    margin-top: 20px; /* Optional: Add some space above the logo */
    margin-bottom: 0px;
}

.logo-image-nav {
    height: 60px; /* Adjust height as needed */
    width: auto; /* Maintain aspect ratio */
    margin: 20px; /* Optional: Add some space above the logo */
}
ul {
    list-style: none;
    display: flex;
}

ul li {
    margin-left: 20px;
}

ul li a {
    color: white;
    text-decoration: none;
}

.content {
    text-align: center;
    margin-top: 20%;
}

h1 {
    font-family: 'Bebas Neue', sans-serif; /* Apply the new font */
    font-size: 30px; /* Increase the font size */
    margin: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Optional: Add a shadow for better visibility */

}
h3 {
    font-family: 'Bebas Neue', sans-serif; /* Apply the new font */
    font-size: 5vw; /* Increase the font size */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Optional: Add a shadow for better visibility */

}
footer {
    position: absolute;
    bottom: 20px;
    right: 20px; /* Align to the right */
    text-align: right; /* Align text to the right */
}
footer-links {
    display: flex;
    flex-direction: column; /* Stack links vertically */
    align-items: flex-end; /* Align items to the right */
}

.footer-links a {
    color: white;
    margin: 5px 0; /* Space between links */
    text-decoration: none;
    display: flex; /* Use flexbox for logo and text alignment */
    align-items: center; /* Center items vertically */
}
.social-logo {
    height: 20px; /* Adjust the height of the logos */
    width: auto; /* Maintain aspect ratio */
    margin-right: 5px; /* Space between logo and text */
}
.sidebar {
    height: 100%; /* Full height */
    width: 250px; /* Set the width of the sidebar */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    top: 0; /* Stay at the top */
    right: -250px; /* Hide the sidebar off-screen on the right */
    background-color: rgba(0, 0, 0, 0.8); /* Black background with transparency */
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.3s; /* Transition effect for opening */
    padding-top: 60px; /* Space from the top */
    color: white; /* Text color */
}


.sidebar h2 {
    padding-left: 20px; /* Space for the heading */
}


.sidebar p {
    padding-left: 20px; /* Space for the email */
}


.sidebar .closebtn {
    position: absolute; /* Position the close button */
    top: 20px; /* Position from the top */
    right: 20px; /* Position from the right */
    font-size: 30px; /* Size of the close button */
    color: white; /* Color of the close button */
    background: none; /* No background */
    border: none; /* No border */
    cursor: pointer; /* Pointer cursor */
}