html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/* Background */
body {
    background-color: rgb(7, 59, 59);
    background-image: url(https://i.gifer.com/76YS.gif);
    background-attachment: fixed;
    color: #fff;
    font-family: Arial, sans-serif;
}

/* HEADER */
.header {
    padding: 20px;
    background-color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header h1 {
    font-size: 40px;
}

.header ul {
    list-style: none;
}

.header li {
    display: inline-block;
    margin-left: 25px;
}

.header a {
    color: white;
    font-size: 20px;
    text-decoration: none;
}

/* STARS BANNER */
.stars {
    height: 500px;
    background-image: url("./starsgif.gif");
    background-size: cover;
    background-position: center;
}

/* ABOUT SECTION */
.about {
    margin: 100px;
    padding: 20px;
    background-color: #000;
    border: 1px solid #f2f2f2;
    color: rgb(0, 255, 13);
    font-family: "Courier New", monospace;
    font-size: 18px;
}

.about p {
    padding: 10px 0;
}

/* FULL-SCREEN GALLERY */
.gallery {
    width: 100%;
}

/* One image per full screen */
.full-image {
    height: 100vh; /* full viewport height */
    width: 100%;
    padding: 40px;
    background-color: rgba(0,0,0,0.65);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #ffffff55;
}

/* Large full-screen images */
.full-image img {
    max-height: 80vh; /* takes up most of screen height */
    width: auto;
    border: 2px solid #f2f2f2;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.9);
    transition: transform 0.4s ease;
}

/* Subtle zoom on hover */
.full-image img:hover {
    transform: scale(1.05);
}

/* Captions */
.full-image p {
    font-size: 26px;
    color: #fff;
    text-shadow: 0 0 5px black;
    margin-top: 20px;
    text-align: center;
}

/* CONTACT */
.contact {
    padding: 40px;
    text-align: center;
    font-size: 22px;
}