/* ===== RESET ===== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ===== BODY ===== */
body{
    font-family: Arial, sans-serif;
    background: linear-gradient(to right,#c7d2fe,#e0e7ff);
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;
}

/* ===== CONTAINER ===== */
.container{
    background:white;
    padding:50px;
    border-radius:20px;
    text-align:center;
    width:90%;
    max-width:900px;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.container h1{
    margin-bottom:15px;
}

/* ===== DANH SÁCH SINH VIÊN ===== */
.student-list{
    margin-top:30px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

/* ===== CARD ===== */
.student-card{
    text-decoration:none;
    background:#2563eb;
    color:white;
    padding:35px;
    border-radius:15px;
    transition:0.3s;
}

.student-card:hover{
    background:#1d4ed8;
    transform:translateY(-5px);
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
    .student-list{
        grid-template-columns:1fr;
    }
}