*{
    margin: 0;
    padding: 0;
}
html {
    min-height: 100%;
    background: black;
    background-size: cover;
    background-repeat: no-repeat;
    scroll-behavior: smooth;

 }
.header{
    min-height: 100vh;
    width: 100%;
    background-color: black;
    background-position: center;
    background-size: cover;
}
nav{
    display: flex;
    padding: 1% 5%;
    justify-content: space-between;
    align-items: center;
}

nav img{
    width: 150px;

}
.navilinks{
    flex: 1;
    text-align: center;
}
.navilinks ol li{
    list-style: none;
    display: inline-block;
    padding: 30px 40px;
    position: relative;
}

.navilinks ol li a{
    color: aliceblue;
    text-decoration: none;
    font-size: 20px;
    font-family:'Cormorant Garamond', serif;
}
.navilinks ol li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #fff;
    display: block;
    margin: auto;
    transition: 0.6s;
}
.navilinks ol li:hover::after{
    width: 100%;
}

.familyalbum {
    background-color: black;
    background-size: cover;
    background-repeat: no-repeat;
    scroll-behavior: smooth;
    height: 100vh;
    position: relative;
    margin-bottom: 20vh;
    color: #fff;
    
}

.familyalbum  h1{
    font-size: 50px;
    color: #fff;
    padding: 20px;
    text-align: left;
    padding-top: 40px;
    font-weight: 600;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
}

.familyalbum div {
    display: inline-block;
    background-color: transparent;
    padding: 0;
    margin: 0;
    vertical-align: top;
    width: calc(25% - 15px); 
    height: 80vh; 
    overflow: hidden;
    font-size: 20px;
    font-weight: 300;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    top: 40%;
    left: 10px;
    position: relative;
  }
  
  .familyalbum div img {
    width: 100%;
    height: 80vh
  }