/* Basic Reset */
body, h1, ul, li, figure {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: small;
}

/* Body and Background */
body {
    font-family: "Roboto", Arial, sans-serif;
    background: url('img/your-background-image.jpg'), 
                linear-gradient(90deg, rgba(142 145 146 / 0.8) 0%, rgba(9,9,121,0.8) 35%, rgba(0,212,255,0.8) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #170909; /* Dark grey text */
}

/* Header */
header {
    background: url('img/your-header-image.jpg'), 
                linear-gradient(90deg, rgb(214 223 224) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
    background-size: cover;
    background-position: center;
font-weight: 900;
font-size: 1.25rem;
font-style: normal;
    padding: 10px;
    color:#fff;

}

#main-logo {
    max-width: 100%; /* Responsive logo */
    height: auto;
    width: 60px;
}

/* Navigation */
nav {
    background-color: #333; /* Dark background for navigation */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

nav a {
    color: #fff; /* White text for links */
    text-decoration: none;
    padding: 5px 10px;
}

nav a:hover {
    text-decoration: underline;
}

/* Main Section */
main {
    padding: 20px;
}

.thumbnails {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: space-around;
}

figure {
    margin: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

figcaption {
    text-align: center;
    margin-top: 5px;
}

figcaption a {
    color: #333; /* Dark grey text for figcaption links */
    text-decoration: none;
}

figcaption a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
    color: #fff; 
    text-align: center;
    padding: 10px;
    width: 100%;
    bottom: 0;
}






@media screen and (min-width: 60rem) {
   
    .thumbnails {
        flex-direction: row;
    }
    .wrapper {
        max-width: 60rem;  /* 960px */
        margin: 1rem auto;  /* 1rem space above/below, automatic
    left/right margins centers the div */
        border: 1px solid #444;
        background-color: #fff;
    }
    
} /* do not delete */