@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Rock+Salt&display=swap');

:root {
    font-family: "Outfit", sans-serif;
    font-size: 1.5rem;
    color: hsl(0, 0%, 90%);
    text-align: center;
    background-color: hsl(0, 0%, 15%);
    background-size: cover;
    background-attachment: fixed;
    height: 500px;
    font-weight: 400;
    line-height: 1rem;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 30vw;
    max-height: 30vh;
}


h1,
h2,
h3,
a,
p {
    word-spacing: 3px;
    letter-spacing: 1px;
    line-height: 1.3;
    color: inherit;
    text-decoration: none;
}

h1 {
    font-size: xxx-large;
    font-weight: 500;
}

a {
    color: #414167;
}
a:hover {
    color: #13136d;
    text-shadow: 0 0 5px #020203;
}

/* header */
header {
    position: sticky;
    left: 0;
    top: 0;
    z-index: 999;
}

nav {
    background-color: #00000089;
    line-height: 100%;
    padding: 1vw 4vw;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
}

.navleft ul {
    display: inline-flex;
    justify-content: left;
    gap: 1em;
}

.navright ul {
    display: flex;
    justify-content: right;
    gap: 1em;
}

nav a {
    color: rgb(200, 200, 200);
    font-size: larger;
    font-weight: bold;
}

/* header end */

/* main */
main {
    margin: 3vh 5vw;
}

main a {
    color: #020203;
}

/*  */
.polaroid {
    background: #f0f0f0;
    padding: 16px 10px 40px 10px;
    box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-align: center;
    max-width: 90vw;
    /* adjust as needed */
    margin: 18px;
    display: inline-block;
    position: relative;
}

.polaroid img {
    max-height: 70vh;
    width: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
}

.polaroid figcaption {
    font-family: "Rock Salt", cursive;
    font-weight: 400;
    font-size: medium;
    color: #333;
    letter-spacing: 1px;
    line-height: 1rem;
    width: 20rem;
    margin: auto;
    margin-top: 1rem;
    height: 1rem;
}


.image-gal img {
    background: #f0f0f0;
    padding: 10px 6px 30px 6px;
    box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-align: center;
    max-width: 80vw;
    /* adjust as needed */
    margin: 4px;
    display: inline-block;
    position: relative;
}


/*footer*/

footer ul {
    background-color: #232738;
    line-height: 1rem;
    padding: 1vw 6vw;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
}

footer ul li {
    color: rgb(200, 200, 200);
    font-size: larger;
    font-weight: bold;
}
footer a {
        color: rgb(200, 200, 200);
}
/* footer end */