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

body {
    font-family: 'Inter', sans-serif;
    background: #f4f4f9;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.options {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.option {
    text-decoration: none;
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 200px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    text-align: center;
}

.option:hover {
    transform: translateY(-5px);
}

.option img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

h2 {
    font-size: 20px;
    margin: 10px 0;
}

p {
    font-size: 14px;
    color: #555;
}


