/* index.css */

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', Arial, sans-serif;
    background-color:#c1cdcd;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #0c383e;
}

.index-container {
    text-align: center;
    background: white;
    padding: 40px 30px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(12, 56, 62, 0.15);
    max-width: 400px;
    width: 90%;
}

.logo {
    width: 300px;
    height: 300px;
    object-fit: contain;
    margin-bottom: 5px;
    user-select: none;
}

.index-container h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    user-select: none;
    color: #0c383e;
}

.links {
    font-size: 16px;
    font-weight: 600;
}

.links a {
    color: #0c383e;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
    user-select: none;
}

.links a:hover {
    background-color: #2e7d32;
    color: white;
}

.links span {
    margin: 0 12px;
    color: #888;
    user-select: none;
}

/* Mobil üçün */
@media (max-width: 420px) {
    .index-container {
        padding: 30px 20px;
    }
    .logo {
        width: 200px;
        height: 200px;
        margin-bottom: 5px;
    }
    .index-container h1 {
        font-size: 20px;
        margin-bottom: 25px;
    }
    .links {
        font-size: 14px;
    }
}

