html{
    scroll-behavior: smooth;
    scroll-snap-type: mandatory;
    scroll-snap-points-y: repeat(100vh);
    scroll-snap-type: y mandatory;
    scroll-margin-top: 100px;
    background-image: url(../Images/selfrepeating1.png);
}
#Topnav{
    scroll-snap-align: start;
}
main{
    display: flex;
    width: 100%;
    order: 2;
    align-self: center;
    flex-direction: column;
}
.mainsection{
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    scroll-snap-align: start;
}

.sectionclouds{
    display: flex;
    height: 50vh;
    margin: 0 0 0 0;
    padding: 0 1%;
    width: 85%;
    position: absolute;
    z-index: 2;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    font-size: 35px;
}

#sectionclouds1{
    font-size: 60px;
    height: 25vh;
    margin: 10vh 0 0 0;
}
#Bottomnav{
    scroll-snap-align: end;
    flex-direction: row;
}

/* animatie shit */
.text-in-animation{
    animation-name: textin;
    animation-duration: 1.5s;
}
@keyframes textin{
    from {transform: translateY(-500px); opacity: 0;}
    to {transform: translateY(0px); opacity: 1;}
}
.homeimgs{
    display: flex;
    height: 45vh;
    top: 40vh;
    bottom: 15vh;
    position: absolute;
    /* animation-name: img1;
    animation-duration: 2s; */
}
.img-opacity-animation{
    animation-name: imgopacity;
    animation-duration: 2s;
}
@keyframes imgopacity{
    from{opacity: 0;}
    to{opacity: 1;}
}
