* {
    box-sizing: border-box;
    color: rgb(23, 26, 32);
    font-family: 'Outfit', sans-serif ;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;

}

.main-header {
    line-height: 1;
    position: fixed;
    top: 0;
    z-index: 10;
    width: 100%;

}

.message {
    background: #fff;
    font-size: .95rem;
    padding: 1.15rem 3rem;
    text-align: center;
}

.inner-wrap{
    align-items: center;
    display: grid;
    grid-template-columns: 15rem 1fr 15rem;
    grid-template-rows: 1fr;
    font-weight: 500;
    min-height: 3.5rem;
    padding: 0 3rem;


}

.site-link{
    display: flex;

}

.logo{
    max-width: 7.5rem;
}

.navigation-main{
    display: flex;
    justify-content: center;

}

.navigation-user{
    transform: translateX(2rem);
}

.inner-wrap ul{
    display: flex;
    list-style-type: none;
    justify-content: center;
    margin: 0;

}

.inner-wrap ul a{
    color: rgb(23, 26, 32);
    font-size: 0.9rem;
    padding: 0.3em 1rem;
    text-decoration: none;

}

main{
    height: 100vh;
    overflow-y: auto;
    scroll-snap-type: y mandatory;

}

.snap{
    scroll-snap-align: start;
    height: 100vh;
    position: relative;

}

.snap img{
    object-fit: cover;
    position: absolute;
    width: 100%;
    height: 100%;
}

.snap header {
	margin-top: 18vh;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	text-align: center;
	width: 100%;
	z-index: 20;
	transition: 0.3s all;
}

.snap.active header {
	opacity: 1;
}

.snap h2{
    font-size: 2.5rem;
    margin-bottom: 0.3rem;

}

.snap .buttons {
	display: flex;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	bottom: 5rem;
	width: 100%;
	z-index: 20;
	transition: 1s all;
    transition: 0.3s all;
}

.snap.active .buttons {
	opacity: 1;
}

.snap .btn{
    background: rgb(23, 26, 32, .65);
    border-radius: 0.3rem;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 0.75rem;
    padding: 0.7rem 1rem;
    text-align: center;
    text-decoration: none;
    min-width: 16rem;



}

.snap .btn.alt{
    background: rgba(244, 244, 244, .75);
    color: rgba(23, 26, 32);

}

footer{
    display: none;
    position: fixed;
    bottom: 1.7rem;
    width: 100%;
 

}
footer.active{
    display: block;
}
footer ul{
    display: flex;
    font-size: 0.8rem;
    list-style-type: none;
    justify-content: center;

}

footer li{
    padding: 0 0.5rem;

}

footer ul a{
    text-decoration: none;
    color: rgb(230, 231, 233);

}