/* Set the background image and specify its size behavior */
body {
    margin: 0;
    padding: 0;
    background-image: url('Minecraft2.jpg'); /* Replace with your image URL */
    background-size: cover; /* Resizes the image to cover the entire container */
    background-repeat: no-repeat; /* Prevents image repetition */
    background-attachment: fixed; /* Keeps the background fixed while scrolling */
    background-position: center; /* Centers the image horizontally and vertically */
    height: 100vh; /* Ensures the background covers the entire viewport height */
}

/* Styles for the top banner */
header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

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

header nav ul li {
    display: inline;
    margin-right: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* Style for the navigation menu */
nav ul {
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 100px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Styles for the middle text */
.content {
    text-align: center;
    margin-top: 20px;
    color: grey;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 80px); /* Adjusted to accommodate the header and footer */
}

/* Styles for the small picture */
.small-picture {
    text-align: center;
    margin-top: 10px;
}

.small-picture img {
    width: 100px; /* Adjust the width as needed */
    height: 100px;
}

/* Footer styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}

/* Styles for the bottom bar */
.bottom-bar {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}

.bottom-bar .copyright,
.bottom-bar .about-link {
    display: inline-block;
}

.bottom-bar .about-link a {
    color: white;
    text-decoration: none;
    margin-left: 20px; /* Adjust spacing between the copyright and link */
}

/* Styles for the about page */
.about-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px); /* Adjusted to accommodate the bottom bar */
}

/* About content styles */
.content {
    text-align: center;
    margin-top: 20px;
}

/* Style the middle text */
.content p {
    font-size: 18px; /* Adjust font size as needed */
}

/* Footer styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}

/* Styles for the bottom bar */
.bottom-bar {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}

.bottom-bar .copyright,
.bottom-bar .about-link {
    display: inline-block;
}

.bottom-bar .about-link a {
    color: white;
    text-decoration: none;
    margin-left: 20px; /* Adjust spacing between the copyright and link */
}

/* Styles for the contact form section */
.contact-form {
    background-color: #f5f5f5;
    padding: 20px;
}

.contact-form label {
    font-weight: bold;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
}

.contact-form button {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

/* Styles for headings */
h1 {
    color: #333;
}

h2 {
    color: #555;
}

/* Styles for the contact form input fields */
input[type="text"],
input[type="email"],
textarea {
    width: 80%; /* Adjust the width as desired */
    max-width: 300px; /* Optional: Set a maximum width */
    height: 30px; /* Adjust the height as desired */
    font-size: 14px; /* Optional: Adjust the font size */
}
