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

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

.logo {
    font-size: 24px;
    color: #F9FAF8;
    font-weight: 910;
    flex-shrink: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    color: #F9FAF8;
    font-weight: 900;
}

.hero-text p, li a{
    font-size: 18px;
    color: #E5E7EB;
}

button {
    background-color: #3882F6;
    color: #F9FAF8;
    font-size: 18px;
    font-weight: 900;
    padding: 10px 35px;
    border-radius: 10px;
    border: none;
    
}

.section-2 h1 {
     color: #1F2937;
     font-size: 36px;
     font-weight: 900;
}

.section-1 {
    padding: 10px 200px 120px 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-1 .hero {
    margin-top: 120px;
    flex: 1;
    display: flex;
    align-items: stretch;
    gap: 75px;
}

.img-placeholder {
    flex: 1 1 1000px;
    background-color: #606a7a;
    color: #F9FAF8;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.section-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 350px;
    padding-left: 300px;
    padding-right: 300px;
}

.section-2 img {
    width: 100px;
    border: 3px solid #3882F6;
    border-radius: 10px;
}

.section-2 .info-content {
    display: flex;
    gap: 50px;
}

.section-2 .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-2 .item p {
    text-align: center;
}

.section-3 {
    color: #1F2937;
    font-size: 36px;
    font-weight: 300;
    font-style: italic;
    background-color: #E5E7EB;
    display: flex;
    flex-direction: column;
    padding: 50px 300px;
}

.section-3 .author {
    font-size: 18px;
    text-align: right;
    font-style: normal;
    font-weight: 700;
}

.section-3 p {
    padding: 0;
    margin: 0;
}

.section-4 {
    margin: 50px 200px;
    border-radius: 10px;
    background-color: #3882F6;
    color: #E5E7EB;
    display: flex;
    padding: 25px 150px;
    justify-content: space-between;
    align-items: center;
}

.section-4 .text {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
}

.section-4 h1 {
    margin: 0;
    font-size: 18px;
}

.section-4 p {
    margin: 0;
    font-size: 16px;
}

.section-4 button {
    border: 2px solid #F9FAF8;
}

ul {
    list-style-type: none;
    display: flex;
    gap: 30px;
}

a {
    text-decoration: none;
}

li {
    flex-shrink: 0;
}

footer {
    height: 65px;
    display: flex;
}

footer p {
    margin: auto;
    color: #E5E7EB;
}