body {
    margin: 0;
    font-family: 'Poppins', sans-serif; /* Modern font */
    color: #333;
    background-color: #f4f4f4;
}

.header {
    position: relative;
    height: 65vh;
    overflow: hidden;
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 1;
}

.logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2; /* Ensures content is above the overlay */
}

.logo {
    width: 200px; /* Increased from 150px to 200px */
    margin-bottom: 20px;
}

nav {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    transition: background 0.3s;
}

nav a:hover {
    background-color: #575757;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

.links .btn {
    display: inline-block;
    margin: 10px;
    padding: 15px 30px; /* Increased padding for larger buttons */
    background-color: #ff9800;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em; /* Slightly larger font size */
    transition: background-color 0.3s ease;
}

.links .btn:hover {
    background-color: #e68900;
}

.info {
    padding: 20px;
    background-color: transparent; /* or remove this line entirely */
    text-align: center;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #f4f4f4;
    font-size: 0.9em;
}

h1, h2, h3 {
    color: #2c3e50;
}

.server-info {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.link {
    display: inline-block;
    margin: 10px 0;
}

.dynmap-title {
    font-size: 2em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}