* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

h1 {
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.service-button {
    background: white;
    border: none;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.service-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.service-name {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Service-specific colors */
.bitwarden { color: #175DDC; }
.jellyfin { color: #00A4DC; }
.roundcube { color: #2C3E50; }
.postfixadmin { color: #E74C3C; }
.minecraft { color: #2ECC71; }
.overleaf { color: #138A07; }
.paperless { color: #20B2AA; }
.authentik { color: #4A90E2; }

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    h1 {
        font-size: 2rem;
    }
} 