@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif; 
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url(photographs/background.jpg), no-repeat;
    background-size: cover;
    background-position: center;
}

nav{
    position:fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 5em;
    margin-right: 25em;
    list-style: none;
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(40px);
    box-shadow: 0 0 7px rgba(0, 0, 0, .2);
    border-radius: 2px;
    padding: 5px 10px  ;
}

nav ul{
    display: flex;
    justify-content: center;
    gap: 5em;
    margin-right: 25em;
    list-style: none;
}

nav ul a{
    color:white;
    padding: 5px 15px;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 20px;
    text-decoration: none;
}

nav > a{
    font-size: 32px;
    color:white;
    text-decoration: none;
}

section{
    color:white;
    padding: 10%;
}

.section2{
    width: 1px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    border-radius: 15px;
    padding: 0px 0px  ;
}

.wrapper{
    width: 420px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    border-radius: 15px;
    padding: 30px 40px  ;

}


.gallery{
    display: block;
    justify-content: center;
    border: 1px solid white;
    margin: 5px;
}

.gallery .description{
    padding: 5px;
    text-align: right;
    
}
 




