body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
}

/* Header section*/
.header {
    display: flex;
    background-color: #1F2937;
    justify-content: space-around;
    align-items: center;
}

.header.title {
    color: #F9FAF8;
    font-size: 24px;
}

.header.container {
    display: flex;
    align-items: center;
}

.header.list {
    color: #E5E7EB;
    gap: 16px;
    margin-right: 120px;
}

.logo {
    width: auto;
    height: 80px;
    margin-right: 16px;
    margin-left: 80px;
}

ul {
    list-style: none;
}

li {
    text-decoration: none;
}


/* Hero section */
.hero {
    display: flex;
    background-color: #1F2937;
    justify-content: space-around;
    padding: 32px;

}

.hero.text {
    display: flex;
    flex-direction: column;
    margin: 8px;
    max-width: 50%;
    gap: 12px;
    padding-left: 80px;
}

.hero.pic {
    display: flex;
    height: 200px;
    width: auto;
    margin-right: 48px;
    padding-right: 80px;
}

.text1 {
    font-size: 48px;
    font-weight: 800;
    color: #F9FAF8;
}

.text2 {
    font-size: 18px;
    color: #E5E7EB;
}

.button1 {
    background-color: #3882F6;
    color: white;
    border-radius: 12px;
    max-width: 120px;
    border: 0px;
    min-height: 32px;
}

/* Information Section */
.information {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding-bottom: 32px;
}

.information.header {
    display: flex;
    font-size: 36px;
    font-weight: 800;
    color: #1F2937;
    justify-content: center;
    align-items: center;
    min-height: 150px;
}

.information.content {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.info {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    margin: auto 16px;
}

.infocontainer {
    display: flex;
    flex: 1;
}

.infoimg {
    width: 200px;
    height: 200px;
    border: 4px solid #3882F6;
    border-radius: 12px;
    margin-bottom: 18px;
}

/* Quote section */
.quote {
    display: flex;
    flex-direction: column;
    background-color: #E5E7EB;
    padding: 48px;
}

.quote.text {
    display: flex;
    color: #1F2937;
    font-size: 36px;
    font-style: italic;
    justify-content: center;
    align-items: center;
    padding-bottom: 16px;
    flex-wrap: wrap;
    padding-left: 16px;
    padding-right: 16px;
}

.quote.author {
    display: flex;
    color: black;
    font-size: 18px;
    text-align: end;
    padding-top: 0px;
    padding-right: 80px;
}

/* Action section */
.action {
    display: flex;
    padding: 80px 48px;
    background-color: white;
    justify-content: center;
    align-items: center;

}

.action.content {
    display: flex;
    background-color: #3882F6;
    width: 75%;
    padding: 0px 48px;
    border-radius: 8px;
}

.action.text {
    display: flex;
    flex-direction: column;
    background-color: #3882F6;
    align-items: flex-start;
    font-size: 24px;
    color: white;
}

.action.button {
    display: flex;
    background-color: #3882F6;
}

.button2 {
    background-color: #3882F6;
    color: white;
    font-size: 24px;
    min-width: 160px;
    min-width: 60px;
    padding: 6px 24px;
    text-align: center;
    text-wrap: nowrap;
    border-color: white;
    border-radius: 6px;
}

/* Credits */
.credits {
    display: flex;
    background-color: #1F2937;
    justify-content: center;
    align-items: center;
}

.credits.text {
    display: flex;
    color: #E5E7EB;
    padding: 32px;
    font-size: 16px;
}