* {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

a {
    text-decoration: none;
    color: #e5e7eb;
}

body {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

button {
    color: #e5e7eb;
    background-color: #3882f6;
    border: none;
    border-radius: 8px;
    padding: 4px 24px;
}

ul {
    list-style: none;

    display: flex;
    gap: 16px;
}

.header, .intro-section {
    margin: 16px 240px;
}

.header {
    display: flex;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: 700;
}

.links {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.top-layer, .footer {
    background-color: #1f2937;
    color: #f9faf8;
}

.intro-section {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 120px 240px;
}

.intro-text {
    font-size: 48px;
    font-weight: 900;
}

.intro-subtext, .links {
    font-size: 18px;
    color: #e5e7eb;
}

.placeholder {
    width: 946px;
    height: 220px;
    background-color: gray;

    display: flex;
    justify-content: center;
    align-items: center;
}

.body-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 48px;
}

.body-header {
    font-size: 36px;
    color: #1f2937;
    font-weight: 900;
}

.body-container {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin: 32px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 128px;
}

.placeholder-2 {
    border: 4px solid #3882f6;
    border-radius: 12px;
    width: 128px;
    height: 128px;
}

.subtext {
    font-size: 18px;
    color: #e5e7eb;
    text-align: center;
}

.quote-section { 
    display: flex;
    flex-direction: column;
    align-items: center;

    background-color: #e5e7eb;
    padding: 64px;
}

.quote-text {
    font-size: 36px;
    font-style: italic;
    font-weight: 300;
    color: #1f2937;
    max-width: 800px;
}

.quote-sign {
    align-self: center;
    margin-left: 500px;
    font-weight: 700;
}

.sign-up-section {
    display: flex;
    justify-content: space-between;

    color: #e5e7eb;
    background-color: #3882f6;
    margin: 120px;
    border-radius: 8px;
    padding: 48px 120px;
}

.sign-up-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sign-up-text-header {
    font-weight: 700;
}

.sign-up-text-subtext {
    color: #e5e7eb;
}

.sign-up-btn-2 {
    border: 2px solid #e5e7eb;
}

.footer {
    text-align: center;
    padding: 36px;
}


