/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
    color: #0056b3;
}

#click-guide {
    margin: 0 auto;
    width: 80%;
    text-align: center;
    font-size: 1.2rem;
}


header img{
    /* max-width: 100px; */
    margin: auto;
    width: 30%;
    display: block;
}

h1 {
    color: #333;
    text-align: center;
    margin-top: 20px;
}

/* Container for Content */
.container {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Link List Styles */
#link-list ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#link-list li {
    margin: 10px;
}

#link-list a {
    text-decoration: none;
    color: #007BFF;
    transition: color 0.3s;
}

#link-list a:hover {
    color: #0056b3;
}

/* Image Styles */
#link-list img {
    max-width: 100px;
    border-radius: 8px;
    transition: transform 0.3s;
}

#link-list img:hover {
    transform: scale(1.1);
}

/* Footer Styles */
footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background: #eee;
}

p {
    /* text-align: center; */
    margin: auto;
    width: 50%;
}

#contact-email {
    padding-bottom: 30px;
    text-align: center;
    margin: auto;
    width: 80%;
}

#LinkedIn {
    margin: auto;
    width: 80%;
    text-align: center;
    padding-top: 30px;
}
/* Responsive Styles */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    h1 {
        font-size: 1.5em;
        margin-top: 10px;
    }

    #link-list ul {
        flex-direction: column;
        align-items: center;
    }

    #link-list img {
        max-width: 80px;
    }

    footer {
        padding: 5px;
    }
}
