body, h1, nav , a { 
    margin: 10px;
    padding: 10px;
}

body{
    background-color: lightskyblue;
    font-family: "Coming Soon", cursive; /* Default font */
    font-size: larger;
    line-height: 1.10em;
    letter-spacing: 0em;
}

header{
 text-align: center;
 margin-bottom: 2rem;

}

header h1{
    font-size: 2.5rem;
}

nav { 
    text-align: center;
    margin-top: 1rem;
}

nav a {
    text-decoration: none;
    color: #687280;
    font-size: 1rem;
    margin: 0 10px;
}

nav a:hover {
    color: #333;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 1rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding : 0 1rem;
}

.grid img {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
}

.mySlides {
    display: none;
    position: relative;
}

.numbertext {
    position: absolute;
    padding: 8px 12px;
    top: 0;
    color: #fff;
    background-color: rgb(0, 0, 0, 0.8);
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.cursor{
    cursor: pointer;
}

footer{
    text-align: center;
    padding: 20px;
}

footer p{
    margin: 0;
    font-size: 0.9rem;
    color: #555;
}

.modal{
    display: none; 
    position: fixed; 
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}
.modal-content {
    margin: auto; 
    display: block;
    width: 90%;
    max-width: 1200px;
    background-color: #fefefe;
    border: 1px solid #888;
    border-radius: 8px;
}

.close {
    color: white;
    position: absolute;
    top: 15px;
    right: 35px;
    font-size: 40px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.caption-container {
    text-align: center;
    background-color: black;
    padding: 2px 16px;
    color: white;
}

.mySlides {
    display: none;
}   

.cursor {
    cursor: pointer;
}

.active,
.demo:hover {
    opacity: 1;
}

img.hover-shadow {
    transition: 0.3s;
}

.hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19); 
}