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

.section-1 {
    display: flex;
    flex-direction: column;
    gap: 100px;
    background-color: #1F2937;
    font-family: Roboto, sans-serif;
}

h1 {
    margin: 0;
    font-size: 48px;
    color: #F9FAF8;
    font-weight: 900;
}

.header {
    padding-top: 10px;
}

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

.header p {
    color: #F9FAF8;
    font-size: 24px;
    margin: 0;
}

.header-links {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    color: #E5E7EB;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.hero-text, .header p {
    padding-left: 15%;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.hero-text p {
    font-size: 18px;
    color: #E5E7EB;
    margin: 0;
}

.hero-img, .header-links {
    padding-right: 15%;
}

.hero-img {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 100px;
}

.hero-img p {
    background-color: #6f6f6f;
    padding: 100px 150px 100px 150px;
    margin: 0;
}

.hero-text button {
    padding: 5px 15px 5px 15px;
    background-color: #3882f6;
    color: #E5E7EB;
    border-radius: 5px;
}

.section-2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

h2 {
    text-align: center;
    font-size: 36px;
    color: #1F2937;
    font-weight: 900;
}

.imgs-container {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.section-2-img {
    display: flex;
    flex-direction: column;
    width: 200px;
}

.placeholder-img {
    display: inline-block;
    width: 150px;
    height: 150px;
    border: 5px solid #3882f6;
    margin: 0;
    align-self: center;
    border-radius: 8px;
}

.subtext {
    text-align: center;
}

.section-3 {
    background-color: #E5E7EB;
    padding: 100px;
    margin-top: 100px;
}

.quote-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    font-size: 36px;
    color: #1F2937;
    font-weight: 300;
}

.quote-container p, 
.call-to-action p {
    margin: 0;
}

.thor {
    padding-left: 500px;
}

.quote {
    width: 40%;
}

.call-to-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #F9FAF8;
}

.action-header {
    font-size: 24px;
    font-weight: 900;
}

.action-container {
    display: flex;
    background-color: #3882f6;
    justify-content: space-evenly;
    width: 50%;
    min-height: 150px;
    border-radius: 5px;
}

.section-4 {
    display: flex;
    justify-content: center;
    margin-top: 100px;
    padding: 100px;
}

.sign-up {
    padding: 5px 30px 5px 30px;
    align-self: center;
    border-radius: 5px;
    border-color: #F9FAF8;
    background-color: #3882f6;
    color: #F9FAF8;
    border-style: solid;
}

.footer {
    background-color: #1F2937;
    color: #F9FAF8;
    padding: 30px;
    display: flex;
    justify-content: center;
}