body {
    font-family: Roboto;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 16px;
}

a {
    text-decoration: none;
    font-size: 18px;
    color: #e5e7eb;
}

.header {
    background-color: #1f2937;
    height: 550px;
    color: #f9faf8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
}

.top {
    display: flex;
    justify-content: space-between;
    padding-top: 32px;
    width: 900px;
}

.logo {
    font-size: 24px;
    color: #f9faf8;
    margin:0;
    padding: 0;
}

.bottom {
    display: flex;
    align-items: flex-start;
    width: 900px;
}

.img-holder {
    width: 500px;
    height: 250px;
    background-color: lightslategray;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left {
    width: 400px;
}

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

.left p {
    font-size: 18px;
    color: #e5e7eb;
}

.left button {
    background-color: #3882f6;
    color: #f9faf8;
    padding: 8px 20px;
    border: 0;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
}

.information {
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.cards {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.info {
    width: 150px;
}

.info div {
    border: 3px solid #3882f6;
    border-radius: 8px;
    height: 150px;
    width: 150px;
}

.info p {
    text-align: center;
}

.quote-section {
    background-color: #e5e7eb;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quote p{
    width: 900px;
    font-size: 36px;
    color: #1f2937;
    font-weight: 300;
    font-style: italic;
    margin: 0;
}

.quote h1 {
    text-align: right;
    margin: 0;
    font-size: 30px;
}

.call-action {
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.action {
    background-color: #3882f6;
    width: 900px;
    height: 200px;
    display: flex;
    border-radius: 8px;
    color: #f9faf8;
    align-items: center;
    justify-content: center;
    gap: 100px;
}

.action button {
    color: #f9faf8;
    padding: 8px 20px;
    background-color: #3882f6;
    border: 2px solid #f9faf8;
    border-radius: 8px;
}

.footer {
    background-color: #1f2937;
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}