body {
    margin: 0;
    background: linear-gradient(to bottom, tan 0%, #ffe 100%);
    color: #264;
    font-family: Verdana, sans-serif;
}

header {
    text-align: center;
    border-top: 3px solid #222;
    border-bottom: 3px solid #222;
    background-color: #faf0e6;
    padding: 30px 0 10px;
    box-shadow: 0 2px 10px #999;
}

header h1 {
    font-size: 4em;
    text-transform: lowercase;
    letter-spacing: 8px;
    text-shadow: 2px 3px 7px #222;
    margin: 0;
}

.subtitle {
    margin-top: 10px;
    font-weight: bold;
    text-transform: uppercase;
    color: #444;
    font-size: 1.2em;
}

/* Image Gallery */
.hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 30px 20px;
}

.main-img {
    width: 400px;
	height: 550px;
    max-width: 100%;
    border: 5px solid #444;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.4);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.main-img:hover {
    transform: scale(1.05);
}

/* Navigation */
nav {
    text-align: center;
    margin: 40px 0;
}

nav a {
    display: inline-block;
    margin: 10px 20px;
    padding: 16px 24px;
    text-decoration: none;
    background-color: rebeccapurple;
    color: #fff;
    font-size: 1.5em;
    font-weight: bold;
    border: 5px ridge #222;
    border-radius: 12px;
    box-shadow: 2px 2px 8px #000;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

nav a:hover {
    background-color: orangered;
    color: #000;
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: #222;
    color: #EEE;
    text-align: center;
    padding: 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
}