@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
    html {
        font-size: 24px;
        line-height: 1.44;
        height: 100%;
        scroll-behavior: smooth;
        overflow-x: hidden;
}

h1{
    font-size: 38px;
    padding: 16px;
    color:white;
    text-align: center;
    font-family: "Pacifico", serif;
    font-weight: 400;
    font-style: normal;
}

h2{
    font-size: 25.5px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    color: rgb(0, 0, 0);
    background-color:#FFF0F1;

}

h2, h3, p, a{
    font-family: "Noto Serif", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
}

h3{
    font-size: 22px;
    padding-top: 10px;
    padding-bottom: 10px;
}

body{
    background-image: url(imgs/blue&green.png);
    background-size: cover;
}

a{
    text-decoration: none;
    color: rgb(255, 255, 255);
    margin-right: 8px;
    margin-left: 8px;
    
}


nav ul li {
    display: inline-block;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 12px;
    margin: 2px;
    }

nav{
    padding: 16px;
    text-align: center;
}

.button {
    background-color: #b2e3e7;
    display: inline-block;
    border-radius: 8px;
    margin-top: 15px;
}

p{
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 18px;
    background-color:#97CDE1;
    
}


.banner{
    background-image: url(imgs/IMG_20230115_143927906.jpg);
    height: 40vh;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.gallery figure img{
    width: 20vh;
    border-style: solid;
    border-width: 4px;
    border-color: white;
}

.gallery{
    display: grid;
    grid-template-columns: auto 1fr;
    background-color:#97CDE1;
    padding-top: 8px;
    padding-left: 16px;
    padding-bottom: 8px;
}

.gallery2{
    display: grid;
    grid-template-columns: repeat(2, 1fr) 1fr;
    place-items: center;
    background-color: #97CDE1;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    position: relative

}

.gallery2 figure img{
    border-style: solid;
    border-color: white;
    border-width: 4px;
    width: 100%;
    height: auto;

}

body{
 margin-left: 20px;
 margin-right: 20px;
}



footer{
    text-align: center;
    color: white;
    font-size: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
}

@media screen and (min-width: 400px){
    .gallery2{
        grid-template-columns: 1fr 1fr;
    }
}
