* {
    box-sizing: border-box;
    font-family: monospace !important;
    color: #f0f6fc;
}
html, body {
    background-color: #0d1117;
    height: 100%;
    margin: 0;
    padding: 0;
}
h1 {
    display: none;
}
a {
    text-decoration: none;
}
a:hover {
    color: #12ff80;
}
ul {
    padding: 0;
    margin: 0px;
    text-decoration: none;
    list-style-type: none;
    text-align: center;
}
ul>li{
    margin: 16px;
    font-size: 16px;
}
.spacer {
    color: #12ff8040;
    text-align: center;
    letter-spacing: 4px;
    font-weight: bold;
    margin-top: 16px;
    margin-bottom: 16px;
}
.contact {
    text-align: center;
    margin-top: 8px;
    font-size: 16px;
}

/* Main container and layout classes */
.main-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.logo-link {
    display: block;
    text-align: center;
    margin-bottom: 32px;
}

.team-section {
    text-align: center;
}

.footer-section {
    text-align: center;
}

/* Mobile responsive design */
@media (max-width: 768px) {
    .contact {
        font-size: 14px;
    }
    
    .team-section img {
        width: 80px;
        height: 80px;
        margin: 0 1px;
    }
    
    ul>li {
        margin: 12px;
        font-size: 14px;
    }
    
    .spacer {
        font-size: 12px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .contact {
        font-size: 12px;
    }
    
    .team-section img {
        width: 60px;
        height: 60px;
        margin: 0;
    }
    
    ul>li {
        margin: 10px;
        font-size: 12px;
    }
    
    .spacer {
        font-size: 10px;
        letter-spacing: 1px;
    }
}
