html, body {
    font-family: 'Raleway', sans-serif;
    color: #fefeff;
    background-color: #252525;
    height: 100vh;
}

.parent {
    scroll-snap-points-y: repeat(100vh);
    scroll-snap-type: y proximity;
    z-index: 0;
}

section {
    margin-top: 35vh;
    height: 65vh;
    scroll-snap-align: start;
    position: relative;
    /* margin-top: 10%; */
    text-align: center;
}

nav {
    position: fixed;
    top: 0; /* Position the navbar at the top of the page */
    width: 100%; /* Full width */
    background-color: #252525;
    z-index: 1;
}

#logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

h4 {
    text-transform: uppercase;
    letter-spacing: .2rem;
    font-weight: initial;
    text-align: center;
}

h1 {
    text-transform: uppercase;
    letter-spacing: .2rem;
    font-weight: initial;
    text-align: center;
}

button {
    background-color: #fefeff;
    border: 1rem solid;
    border-color: #fefeff;
    border-radius: 5rem;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: .5rem;
    padding-left: 3rem;
    padding-right: 3rem;
    text-transform: uppercase;
    cursor: pointer;
}

.box {
    margin-left: auto;
    margin-right: auto;
    width: 25%;
    align-self: center;
    text-align: left;
}