@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: Roboto, sans-serif;
}

#hero {
    background-color: #1F2937;
    color: #F9FAF8;
    padding: 0 18em;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

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


.header-links ul{
    list-style: none;
    display: flex;
    gap: 12px;
    padding: 12px 0px;
    padding-right: 60px;
    font-size: 18px;
    color: #E5E7EB;
}

.stage {
    display: flex;
    padding-top: 30px;
    padding-bottom: 30px;
    gap: 30px;
}

.stage > * {
    flex: 1;
}

.left-stage {
    color: #F9FAF8;
}

h1 {
    font-size: 48px;
    font-weight: 900;
    padding-bottom: 30px;
}

.left-stage p{
    font-size: 18px;
    padding-bottom: 5px;
}

#last-p {
    padding-bottom: 25px;
}

.stage-button {
    background-color: #3882F6;
    font-size: 16px;
    border: none;
    color: white;
    padding: 8px 25px;
    text-align: center;
    border-radius: 6px;
}

#hero-img {
    width: 600px;
    height: 400px;
    border-radius: 9px;
}

.content {
    display: flex;
    flex-direction: column;
    background-color: white;
    justify-content: center;
    align-items: center;
    padding: 30px 0px;
}

.content-headline {
    font-size: 36px;
    color: #1F2937;
    font-weight: 900;
}

.bar {
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
}

.info {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 340px;
    padding: 0px 10px;
}

.bar-image {
    width: 266px;
    height: 200px;
    border-radius: 30px;
    padding: 6px;
}

.image-subtext {
    padding-top: 10px;
}

.citation-block {
    background-color: #E5E7EB;
    padding: 30px;
    color: #1F2937;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.citation-content {
    max-width: 900px;
    width: 100%;
}

.citation {
    font-size: 36px;
    font-family: "light italic";
    padding: 15px 60px;
    text-align: center;
}

.author {
    text-align: right;
    padding-right: 80px;
    font-weight: 700;
    padding-top: 10px;
}

.content-end {
    display: flex;
    justify-content: center;
    padding: 40px 30px;
}

.cta-box {
    display: flex;
    /* align-items: stretch; */
    justify-content: space-evenly;
    background-color: #3882F6;
    padding: 35px;
    border-radius: 10px;
    color: white;
    width: 900px;
}

#cta-heading {
    font-weight: 700;
    padding-bottom: 3px;
}

#cta {
    color: white;
    background-color: transparent;
    border-color: white;
    border-radius: 10px;
    padding: 0px 20px;
    height: 35px;
    border-style: solid;
    font-weight: 700;
}

.footer {
    background-color: #1F2937;
    color: white;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
}