body {
    text-align: center;
    font-family: Arial, sans-serif;
        font-size: 1em;
        line-height: 1.6;
        color: #222;
}
.nav {
    background-color: #222;
    padding: 1rem;
    border-radius: 1.2em;
     margin: 1rem;
}

.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: 0.3s;
        transition: all 0.3s ease;
}

.nav a:hover {
    color: #00bcd4;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    text-decoration: none;
        transition: all 0.3s ease;
}

h1 {
    font-size: 2.5em;
    text-align: center;
        font-weight: bold;
    text-transform: capitalize;
    text-shadow: 0.125em 0.125em 0.3em rgba(0, 0, 0, 0.3);
}

h2 {
    font-size: 1.8em;
    margin-bottom: 0.6em;
        text-shadow: 0.125em 0.125em 0.3em rgba(0, 0, 0, 0.3);
}

p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 1em;
}

ul,ol,dl {
    display: inline-block;
    text-align: left;
    margin: 1em 0;
    padding-left: 2em;
    font-size: 1em;
}

a {
    font-size: 1em;
    color: #0077cc;
    text-decoration: none;
        transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
    font-size: 1.1em;
        transition: all 0.3s ease;
}
button{
    padding: 0.5em 1em;
    font-size: 1em;
    background-color: #0077cc;
    color: white;
    border: 0.1em solid #0c3451;
    border-radius: 0.5em;
    transform: scale(1.05);
}
button:hover {
    background-color: #005fa3;
        transform: none;
        border-radius: 0.6em;
        
}
#photos {
    flex-wrap: wrap;
    gap: 1.5em;
    margin-top: 2em;
    box-shadow: 0.125em 0.125em 0.3em rgba(0, 0, 0, 0.3);}
footer {
    margin-top: 2em;
    padding: 1em;
    background-color: #222;
    border-radius: 1.2em;
    color: white;
}