body {
    margin: 0;
    font-family: Verdana, sans-serif;

    background-image: url("Images/Island-edge.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    color: #62BBDE;
}

.container{

max-width:900px;

margin:auto;

padding:40px;

}

header{

background: rgba(174, 125, 64, 0.55);

color:white;

padding:40px;

text-align:center;

border-radius:15px;

box-shadow:0px 8px 20px rgba(0,0,0,.15);

}

header h1{

font-family:Georgia,serif;

margin:0;

}

nav{

margin:50px 0;

display:flex;

justify-content:center;

gap:30px;

flex-wrap:wrap;

}

.button{

background:#A9D6E5;

padding:18px 35px;

text-decoration:none;

color:#3F3128;

font-weight:bold;

border-radius:10px;

transition:.3s;

box-shadow:4px 4px 10px rgba(0,0,0,.15);

}

.button:hover{

background:#DCEFF5;

transform:translateY(-4px);

}

.about{

background: rgba(255, 255, 255, 0.60);

padding:30px;

border-left:10px solid #8B5E3C;

border-radius:10px;

}

footer{

margin-top:60px;

text-align:center;

color:#777;

}

.gallery{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:20px;

margin:40px 0;

}

.gallery img{

width:100%;

border-radius:10px;

box-shadow:0 5px 15px rgba(0,0,0,.2);

transition:.3s;

}

.gallery img:hover{

transform:scale(1.03);

}