/* Basic Reset */
body, h1, ul, li, figure {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 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: #333; /* 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: 50px;
font-style: normal;
    padding: 30px;

}

#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;
}

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: rgb(2,0,36);
    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;
    position: fixed;
    width: 100%;
    bottom: 0;
}
