* {
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    margin: 0;
    background: linear-gradient(135deg, #f5f7fa, #e4e8ef);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper {
    text-align: center;
}

.wrapper h1 {
    margin-bottom: 5px;
}

.wrapper p {
    color: #666;
    margin-bottom: 30px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 220px);
    gap: 25px;
    justify-content: center;
}

.card {
    background: #fff;
    border-radius: 14px;
    padding: 35px 20px;
    text-decoration: none;
    color: #222;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform .2s, box-shadow .2s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.15);
}

.icon {
    font-size: 42px;
    margin-bottom: 12px;
}

.card h3 {
    margin: 0;
    font-size: 18px;
}
