html body {
   	padding: 1% 10%;

    background-image: url("/assets/bg.webp");
    background-position: center;
    background-attachment: fixed;
    background-size: 200%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.info_header {
  	padding: 0px 1%;
    background: rgba(0, 0, 0, 0.75);
    color: white;
}
    
.info_box {
    padding: 1px 1%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
}
    
nav {
   	color: white;
}
    
table {
    width: 90%;
    margin: 0 auto;
    border-collapse: collapse;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    
}

thead {
    background-color: rgba(0, 0, 0, 0.75);
    color: #ffffff;
}

thead th {
    padding: 10px;
}

tbody tr{
    background-color: rgba(0, 0, 0, 0.5);
}

tbody td {
    padding: 10px;
    border-bottom: 1px solid #dddddd;
    color: white;
    text-align: center;
}

a:link {
    text-decoration: none;
    color: white;
}

a:visited {
	text-decoration: none;
    color: white;
}

a:hover {
	text-decoration: underline;
    color: rgb(214, 214, 214);
}

a:active {
	text-decoration: none;
    color: white;
}

footer {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px 2%;
    margin-top: auto;
    font-size: 14px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left p {
    margin: 5px 0;
}

.svgWhite {
    height: 32px;
    width: 32px;
    filter: brightness(0) invert(0.85);
    transition: transform 0.2s ease;
}

.socialsIcons {
    display: flex;
    gap: 32px;
    align-items: center;
}

.svgWhite:hover {
    transform: scale(1.1);
}

.server-details-grid {
    display: grid;
    grid-template-columns: max-content 1fr;
    row-gap: 10px;
    column-gap: 20px;
}

.server-details-grid a {
    color: #aaddff;
    text-decoration: underline;
}