* {
    margin: 0;
    box-sizing: border-box;
}
body {
    background: #FBFDFF;
    width: 100vw;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    height: 100dvh;
}

main {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: white;
    height: 45px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 0 0 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

p, a, button {
    font-size: 1rem;
}
h1 {
    width: 100%;
    text-align: center;
    font-weight: 300;
    font-size: calc(1.5rem + 2vw);
}
h1 span {
    font-weight: 600;
}

h2 {
    font-size: calc(1.5rem + 0.7vw);
    color: #446181;
    font-weight: 300;
}
h2 span {
    color: black;
    font-weight: 600;
}

button {
    background: #0A248B;
    padding: 8px 20px;
    border: none;
    color: white;
    border-radius: 5px;
}

nav .links {
    display: flex;
    gap: 20px;
    align-items: center;
    text-decoration: none;
}
nav a.secondary {
    color: #446181;
}
nav button {
    padding: 0 20px;
    height: 45px;
    font-weight: 600;
    border-radius: 0;
}

nav > img {
    height: 20px; object-fit: contain;
}

footer {
    padding: 100px 50px;
    width: 100%;
    background: #03011D;
    z-index: 2;
    position: relative;
    scroll-snap-align: end;
    display: flex;
    flex-direction: column;
    color: white;
    gap: 20px;
}

footer a,
footer p {
    color: white;
    opacity: 0.5;
}


@media (max-width: 550px) {
    nav {
        padding: 0 0 0 10px;
    }
    nav .links {
        display: none;
    }
    footer {
        padding: 50px 10px;
    }
    main {
        scroll-snap-type: none;
    }
}