@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;600&display=swap');

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

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #333;
    line-height: 1.8;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.main-title {
    font-size: 2.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 20px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

th {
    font-weight: 600;
    font-size: 1.2rem;
    color: #34495e;
    background-color: rgba(255, 255, 255, 0.9);
}

td {
    font-weight: 400;
    color: #2c3e50;
}

img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .container {
        padding: 20px 10px;
    }

    .main-title {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    th, td {
        padding: 15px 10px;
    }

    img {
        width: 60px;
        height: 60px;
    }
}