@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*,
::before,
::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    width: 100%;
    display: flex;
    letter-spacing: -0.04cap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

body {
    background-color: black;
    max-width: 1600px;
    width: 100%;
}

h2 {
    font-size: 1rem;
}

h3 {
    font-size: 0.85rem;
}

p {
    color: #d1d5db;
    max-width: 600px;
}

b {
    color: white;
}

*:focus {
    outline: none;
}

main {
    padding-left: 10vw;
    padding-right: 10vw;
    transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

#main-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 4rem;
    gap: 1rem;
}

#main-section>div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

#main-section>div>h5:first-child {
    color: white;
}

#main-section>h1 {
    font-size: 3rem;
    letter-spacing: -0.04cap;
}

#main-section>div>h5 {
    color: #999999;
    font-size: 0.85rem;
}

#main-section>img {
    width: 100%;
    margin-top: 4rem;
    max-width: 700px;
    aspect-ratio: 2/1;
    border-radius: 9px;
}

#main-section>span {
    background-color: #222222;
    padding: 1px;
    border-radius: 9px;
    max-width: 900px;
    width: 100%;
    margin-top: 2rem;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 8rem;
    gap: 1rem;
    width: 100%;
}

.section-header h1 {
    color: white;
    font-size: 1.5rem;
}

#newsletter-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

#newsletter-section .section-header {
    margin-top: 0;
}

#newsletter-section .section-header>h1 {
    margin-top: 0;
    font-size: 1.150rem;
}

#newsletter-form {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 2rem;
    width: 100%;
}

#newsletter-form input {
    width: 100%;
    max-width: 400px;
    padding: 1rem;
    border-radius: 9px 0 0 9px;
    border: none;
    background-color: #161616;
    color: #999999;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
}


#newsletter-form button {
    margin-left: -1rem;
    padding: 1rem 2rem;
    border-radius: 9px;
    border: none;
    background-color: white;
    color: black;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
}

#newsletter-disclaimer {
    color: #999999;
    font-size: 0.75rem;
    margin-top: 1rem;
    text-align: center;
}