
	.main-content {
    padding-top: 80px;
}
        /*
         * CSS for the black background and centering
         */
        body {
            /* Set the entire background of the browser window to black */
			font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background: url('https://magmaservers.org/background.png') repeat-y fixed;
            background-size: cover;
			background-color: rgb(29, 29, 29);
            
            /* Ensure the body covers the entire viewport */
            margin: 0;
            height: 100vh;
            width: 100vw;
            
            /* Use Flexbox for easy centering */
            display: flex;
            justify-content: center; /* Center horizontally */
            align-items: center;   /* Center vertically */
        }
        
.image-container {
    max-width: 90%; /* Prevent the image from being too wide on small screens */
    max-height: 100vh; /* Prevent the image from being too tall */
        }

img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}
		
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;

    padding: 0 20px;

    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}
	a {
  	color: #F6F6F6; /* Sets the default link color */
  	text-decoration: none; /* Removes the default underline */
}

.header .button {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Hides the text initially */
    white-space: nowrap; /* Keeps text on one line */
    cursor: pointer; /* Indicates it's interactive */
	padding-left: 15px;
	padding-right: 15px;
    width: 46px; /* Initial width for just the icon */
    height: 46px; /* Keeps height consistent */

    border-radius: 14px;
    /* Add width transition */
    transition: transform 0.2s ease, background 0.2s ease, width 0.3s ease;
}

.header .button:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.08);
    width: 150px; /* Expanded width to show text and icon */
}

.header .button img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    /* Add margin for spacing when text appears */
    margin-right: 0px; 
    transition: margin-right 0.3s ease;
}

.header .button:hover img {
    margin-right: 8px; /* Adds space between icon and text on hover */
}

.header .button-text {
    /* Ensures smooth visibility transition */
    opacity: 0;
    transition: opacity 0.2s ease 0.1s; /* Delay opacity transition slightly */
}

.header .button:hover .button-text {
    opacity: 1;
}

.container {
    padding: 20px 20px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    justify-content: center; /* Centers content horizontally */
}

.container h1 {
    color: #F6F6F6;
    font-size: 24px;
    margin-bottom: 10px;
}

.container p {
    color: #ababab;
    font-size: 16px;
    margin-bottom: 20px;
}

.container .button {
    background: rgba(20, 20, 20, 0.8);
    color: #a1a1a1;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}