@import url('https://fonts.googleapis.com/css2?family=Anek+Kannada:wght@400;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.highlight {
    color: #d32f2f;
    font-family: 'Inter', sans-serif;
}

.intro {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 100px;
    margin-bottom: 30px;
}

.intro h1 {
    font-size: 50px;
    font-weight: 700;
    font-family: 'Anek Kannada', sans-serif;
}

/* Option Section */
.options {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-top: 30px;
    gap: 20px;
    position: relative;
    z-index: 1;
    margin-bottom: -200px;
}

.image {
    width: 3000px;
    height: 330px;
    position: absolute;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%) scale(0.9);
    z-index: -1;
}

.image_not_logedin {
    width: 3000px;
    height: 330px;
    position: absolute;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%) scale(0.9);
    z-index: -1;
}

.option-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 195px;
    width: 256px;
    border-radius: 20px;
    transition: transform 0.3s ease-in-out;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: #fff;
    position: relative; 
    z-index: 1;
}

.option-item h1 {
    text-align: center;
    font-family: 'Anek Kannada', sans-serif;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: -20px;
}

.option-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.option-item img {
    width: 50px;
    height: 50px;
    filter: grayscale(100%);
    margin-top: -50px;
}

.option-item:hover img {
    filter: none;
}

/* Responsiveness Section */
@media (max-width: 2560px) {
    .options {
        margin-bottom: 80px;
    }
}

@media (max-width: 2560px) {
    .options {
        margin-bottom: 100px;
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (max-width: 768px) {
    .options {
        flex-direction: column;
        margin-bottom: 100px;
    }

    .image_not_logedin {
        height: 200px;
    }

    .image {
        width: 430px;
        height: 800px;
        position: absolute;
        top: 50%; 
        left: 50%; 
        transform: translate(-50%, -50%) scale(0.9);
        z-index: -1;
    }
}