@import url('https://fonts.googleapis.com/css2?family=Albert+Sans&display=swap');

body {
    font-family: 'Albert Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #aaa;
}

section a {
    text-decoration: none;
    color: rgb(227, 150, 56);
}

section a:hover {
    text-decoration: underline;
}

a {
    text-decoration: none;
    color: #aaa;
}

.navbar {
    display:flex;
    margin-left: 5%;
    margin-right: 5%;
    overflow: hidden;
    padding: 10px;
    text-align: center;
    border-bottom: solid #aaa;
}

.navbar-links {
    margin-right: 1%;
    margin-top: auto;
    margin-left: auto;
}

.navbar-links a {
    text-decoration: none;
    color: #aaa;
}

.navbar-links a:hover {
    text-decoration: underline;
}

.navbar-links li {
    border-left: solid 1px #aaa;
    list-style-type:none;
    float: left;
    padding: 10px;
}

.navbar-links li:first-child{
    border-left: none;
}

section {
    margin-left: 5%;
    margin-right: 5%;
    padding: 20px;
    color: #fff;
}

.explanation {
    line-height: 1.5;
}

.rate {
    padding: 5px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    line-height: 1.5;
    max-width: 800px;
}

.footer-bar {
    border-top: solid 1px #aaa;
    padding: 10px;
    margin-left: 5%;
    margin-bottom: 10px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.image-col {
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.1);
}

.image-col a {
    display: block;
    text-decoration: none;
}

.image-col img {
    max-width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.image-description {
    margin-top: 10px;
    color: #fff; /* Text color for the description */
    text-align: center;
    font-size: 1.3em;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.lightbox-content {
    max-width: 800px;
    max-height: 80vh;
    margin: 0 auto;
    text-align: center;
    position: relative;
    background: #333; /* Solid background color for the lightbox content */
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    overflow: auto;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: #fff; /* Close button color */
    font-size: 20px;
}

.lightbox-close:hover {
    color: #f77; /* Close button color on hover */
}

.lightbox-img {
    max-width: 100%;
    max-height: 50%;
    border-radius: 8px;
}

.lightbox-caption {
    color: #fff; /* Text color for the caption */
    margin-top: 10px;
}


.get-it-link {
    display: inline-block;
    padding: 10px 20px;
    color: #fff; /* Text color for the link */
    background-color: #e55e0b; /* Background color for the link */
    text-decoration: none;
    border-radius: 8px; /* Rounded corners */
    cursor: pointer;
}

.get-it-link:hover {
    background-color: #e87b38; /* Background color on hover */
}
