body {
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica,sans-serif;
}

li {list-style-type: none;}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1f2937;
    color: #f9faf8;
    padding: 0 15vw;
    padding-top: 2px;
}

header .logo {
    color: #f9faf8;
    font-size: 2em;
    font-weight: bold;
}

header .right_links ul{
    display: flex;
    justify-content: space-evenly;
    gap: 15px;
}

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

#sec1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 0 15vw;
    min-height: 30em;
    background-color: #1f2937;
    flex-grow: 1;
}

h1 {
    font-size: 3em;
    color: #f9faf8;
    font-weight: 700;
}

#sec1 .left p {
    font-size: 20px;
    color: #e5e7eb;
    font-weight: 400;
}

#sec1 button {
    padding: 0.5em  2em;
    background-color: #3882f6;
    color: #f9faf8;
    font-size: large;
    font-weight: bold;
    border-style: none;
    border-radius: 10px;
}

#sec1 img {
    height: 15em;
    flex-wrap: 1;
}

#sec2 {
    display: flex;
    flex-direction: column;
    padding: 0 15vw;
    align-items: center;
    margin: 7em 0;
}

#sec2 ul {
    padding: 0;
    display: flex;
    gap: 3em;
    text-align: center;
}

#sec2 h2 {
    font-size: 2.5em;
}

#sec2 div {
    min-height: 150px;
    border-style: solid;
    border-color: #3882f6;
    border-width: 4px;
    border-radius: 10px;
}

#sec3 {
    display: flex;
    flex-direction: column;
    padding: 8em 15vw;
    justify-content: space-around;
    align-items: flex-end;
    background-color: #e5e7eb;
}

#sec3 p#quote {
    font-style: italic;
    font-size: 30px;
    font-weight: light;
}

#sec3 div p{font-weight: bold;}

#sec4 {
    padding: 8em 15vw;
}

#banner {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    background-color: #3882f6;
    border-radius: 1em;
    padding: 3em;
}

#banner h2 {
    color: #f9faf8;
    font-weight: bold;
    padding-bottom: 0px;
    margin-bottom: -10px;
}

#banner .left p {
    color: #e5e5eb;
}

#banner button {
    background-color: #3882f6;
    color: #f9faf8;
    border-color: #f9faf8;
    padding: 0.5em  2em;
    font-size: large;
    font-weight: bold;
    border-style: solid;
    border-radius: 10px;
}

footer {
    background-color: #1f2937;
    color: #e5e7eb;
    text-align: center;
    padding: 2.5em 0;
}