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

body {
    font-family: "Nunito", sans-serif;
    background: #e0f0ff;
    color: #1a1325;
    line-height: 1.4;
}

a {
    text-decoration: none;
    color: inherit;
}

.site-header {
    text-align: left;
    padding: 40px;
}

.site-header h1 {
    font-size: 2.8rem;
}

.site-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.gallery {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 90px 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    padding: 10px;
    width: 500px; 
    margin: 0 auto;
}

.gallery-item img {
    width: 100%;
    display: block;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.description{
    margin-top: 15px;
}

footer{
    padding: 20px;
}