
/* Basic Reset and Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    background-color: #ddd;
    color: #1a1a1a;
    margin: 0;
    padding-top: 100px; /* Space for fixed header */
    padding-bottom: 50px; /* Space for fixed footer */
}

/* Header Styling */
header {
    background-color: #1e1f22;
    color: #ffffff;
    width: 100%;
    padding: 15px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;

    /* Center content */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

header h1 {
    font-size: 1.6rem;  /* Adjusted for smaller screens */
    font-weight: 500;
    margin-bottom: 5px;
}

body p {
    font-size: 0.8rem;  /* Adjusted for smaller screens */
    color: #1e1f33;
    margin-top: 15px;
    width: 100%; /* Set to 100% for responsiveness */
    max-width: 600px; /* Limit max width */
    text-align: center;

}

/* Main Container for Content */
.main-container {
    max-width: 100%; /* Full width for small screens */
    width: 100%;
    margin-top: 140px; /* Space for the header */
    padding: 20px; /* Reduced padding for smaller screens */
    background-color: #666;
    border: 1px solid #dddddd;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
    border-radius: 8px; /* Added rounded corners */
}

/* Discord Widget Section */
.discord-widget {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    background-color: #666;
    border-radius: 4px;
    border: 1px solid #999;
    padding: 0px;  /* Added padding */
}

/* Footer Styling */
footer {
    background-color: #1e1f22;
    color: #c3c3c3;
    width: 100%;
    text-align: center;
    padding: 15px;
    position: fixed;
    bottom: 0;
        z-index: 1000;
	font-size: 0.6rem;
	text-align: center;
}

footer a {
    color: #4da6ff;
    text-decoration: none;
    font-weight: 300;
}

footer a:hover {
    color: #3399ff;
    text-decoration: underline;
}

/* Media Query for smaller screens */
@media (max-width: 600px) {
    header h1 {
        font-size: 1.4rem; /* Adjusted font size */
    }

    body p {
        font-size: 0.6rem; /* Adjusted font size */
        max-width: 75%; /* Ensure it doesn’t stretch too much */
    }

    .main-container {
        padding: 15px; /* Reduced padding for smaller screens */
        margin-top: 120px; /* Reduced margin */
    }

    footer {
        padding: 10px; /* Reduced footer padding */
		font-size: 0.4rem;
    }

    .discord-widget {
        padding: 0px; /* Adjust padding */
    }
}
