* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 17px;
    font-style: normal;
    letter-spacing: -0.05em;
}

.container {
    width: 100%;
    padding: 15px 40px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15rem;
    flex-direction: column;
}

main {
    width: 100%;
}

h1, h2 {
    font-size: 2.1rem;
    font-weight: 600;
    letter-spacing: -0.1rem;
    line-height: 37px;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.6rem !important;
}

p {
    color: #363636;
}

.margin-b {
    margin-bottom: 50px;
}

ul {
    padding-left: 40px;
    margin-top: 25px;
}

li {
    margin-bottom: 10px;
}

footer {
    position: fixed;
    bottom: 0;
    padding: 15px;
    width: 100%;
    z-index: 9999;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 25%, rgb(248, 248, 248) 75.58%);
}

footer > * {
    margin-right: 15px;
}

a {
    color: #000;
    transition: all .25s ease-in-out;
}

a:hover {
    color: #363636
}
