/* Below are multi-element stylings */

html,
body {
    height: 100%;
}

.header,
.action-block,
.footer,
button a {
    color: #F9FAF8;
}

.header-links,
.intro,
.header-links a {
    color: #E5E7EB;
    font-size: 18px;
}

.header,
.footer {
    background-color: #1F2937;
}

.action-container,
button {
    background-color: #3882F6;
    border-style: solid;
}

button {
    border-radius: 5px;
    width: 7em;
    height: 2em;
}

.header-links a {
    text-decoration: none;
}

button a {
    text-decoration: none;
}

/* Below are specific element applications */

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
}

.header {
    display: flex;
    flex-direction: column;
    flex: 1.5;
    row-gap: 40px;
}

.header-links {
    display: flex;
    gap: 40px;
}

.header img {
    width: 400px;
    height: 200px;
}

.logo {
    font-size: 24px;
}

.top {
    display: flex;
    justify-content: center;
    padding: 16px;
    column-gap: 25em;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 1em;
    flex: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
}

.hero-action {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 10px;
    height: 200px;
    width: 400px;
}

.hero-action button {
    border-style: none;
}

.body {
    display: flex;
    flex-direction: column;
    flex: 2.5;
}

.information {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1.2;
    row-gap: 30px;
}

.information-header {
    margin-top: 20px;
    color: #1F2937;
    font-size: 36px;
    font-weight: bolder;
}

.information-container {
    gap: 2em;
}

.info-box {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    width: 250px;
    align-items: center;
}

.box {
    width: 200px;
    height: 200px;
    border-style: solid;
    border-radius: 10px;
    border-color: #3882F6;
    border-width: 3px;
}

.box-images {
    width: 200px;
    height: 200px;
    border-radius: 6px;
    max-width: 200px;
    max-height: 200px;
}

.text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.information-container {
    display: flex;
}

.quote-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    background-color: #E5E7EB;
}

.quote-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 10em;
    width: 50em;
    row-gap: 2em;
}

.quote {
    font-size: 36px;
    font-style: italic;
}

.quote-source {
    align-self: flex-end;
    font-size: 18px;
    font-weight: bold;
}

.action-block {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.action-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 55em;
    height: 8em;
    border-radius: 10px;
}

.action-call {
    font-size: 20px;
    font-weight: bold;
}

.instruction {
    color: #E5E7EB;
}

.action-block button {
    border-color: #F9FAF8;
    border-width: 1.5px;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0.2;
}





