/* Basic styling for layout, fonts, colors, etc. */
body {
    font-family: "Outfit", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;

}

header {
    background-color: #333;
    color: white;
    padding: 1rem 0;
    text-align: center;
}

h1, h2, h3 {
    font-family: "Dancing Script", cursive;
    font-size: 50px;
}



main {
    padding: 20px;
}

section {
    margin-bottom: 20px;
    padding: 15px;
    background-color: white;
    border-radius: 5px;
}


#showcase {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

#showcase img {
    width: 100%; 
    height: 100%;
    object-fit: cover; /* This ensures the image covers the entire area */
}

/* ... other styles ... */

#social-links ul li a { /* Target the anchor tags that wrap the images */
    display: inline-block; /* Allow setting width and height */
    width: 300px; /* Set the desired width */
    height: 100px;  /* Set the desired height */
    overflow: hidden; /* Hide any content overflowing the container */
}

#social-links ul li img {
    width: 100%; 
    height: 100%;
    object-fit: contain; /* Maintain aspect ratio and fit within container */
}

#social-links ul li {
    list-style: none;
    margin: 5px; /* Reduce margin for smaller banners */
}


/* ... other styles ... */

/* ... other styles ... */

#skills .background-image { /* Common style for all background images */
    width: 200px; 
    height: 200px;
    object-fit: cover;
    display: inline-block;
    border-radius: 5px;  /* Add rounded corners */
    margin: 10px;       /* Add some margin between images */
}


#dogelana img {
    max-width: 200px; /* Adjust size as needed */
    height: auto;
    display: block;
    margin: 0 auto;
}
