* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    background: #000000; 
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #3b82f6; /* blue */
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.btn:active {
    transform: scale(0.97);
}

.SchoolWorkButtons {
    margin: 10px;
}