* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #141414;
    color: white;
}

/* Header Section */
.hero {
    background: url('https://wallpapers-clan.com/wp-content/uploads/2023/10/minecraft-grass-tree-desktop-wallpaper-preview.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    color: white;
	position: relative;
	padding-top: 50px; /* Controla qué tan arriba quieres el contenido */
}

nav {
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.status-btn {
    background: none;
    color: lime;
    border: none;
    font-size: 18px;
}

.hero-content {
    position: absolute;
    text-align: center;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    position: relative;
    top: 350px; /* Mueve hacia arriba */
    margin-bottom: 20px;
}

.hero-content p {
    position: relative;
    top: 340px; /* Mueve hacia arriba o abajo libremente */
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.cta-btn {
    position: relative;
    top: 330px; /* Mueve hacia arriba o abajo */
    padding: 10px 20px;
    background-color: rgb(0, 255, 47);
    border: none;
    font-size: 18px;
    cursor: pointer;
}

/* About Us Section */
.about-us {
    display: flex;
    align-items: center;
    padding: 50px;
    background-color: #202020;
}

.about-us img {
    width: 150px;
    margin-right: 20px;
}

.text-content {
    max-width: 600px;
}

.text-content h2 {
    margin-bottom: 15px;
}

/* Our Servers Section */
.our-servers {
    text-align: center;
    padding: 50px 0;
    background-color: #181818;
}

.servers-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.server-card {
    background-color: #202020;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

.server-card img {
    width: 100%;
    border-radius: 10px;
}

.server-card h3 {
    margin-top: 15px;
}

/* Join the Community Section */
.join-community {
    padding: 50px;
    background-color: #202020;
}

.community-content {
    display: flex;
    align-items: center;
}

.community-content img {
    width: 150px;
    margin-right: 8px;
}

/* Footer Section */
footer {
    background-color: #141414;
    padding: 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
}

.footer-section h3 {
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 5px;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.copy-ip-btn {
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.copy-ip-btn:hover {
    background-color: #555;
}

.copy-ip-btn:active {
    background-color: #777;
}
