body, html, * {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
}

/* Background colors */
.hero, .footer {
    background-color: #1F2937;
}
.quote {
    background-color: #E5E7EB;
}
/* Height of each section */
.hero, .information, .quote {
    height: 500px;
}
.footer {
    height: 80px;
}

.action {
    height: 270px;
}

/* Footer design */
.footer {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}
/*Quote area */

/* Quote text style */
.quote-text {
    font-size: 36px;
    font-weight: 300;
}

/*Quote autor style*/
.autor {
    color: #1F2937;
    font-weight: bolder;
}

/* Quote flexbox adjustment */
.inside-quote {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /*put the autor class in the bottom right*/
    padding: 100px;
    width: 800px;
    padding-top: 150px;
}
.quote {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*Information area*/

/*Title style*/
.title-info {
    font-size: 36px;
    color: #1F2937;
    font-weight: 900;
}

/*image style*/
.image {
    border: 3px solid #3882F6;
    width: 150px;
    height: 150px;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
}

/*Description style*/
.block p {
    font-weight: 300;
}

.block p {
    width: 150px;
    height: 150px;
    text-align: center;
}

/* content alignment*/
.img-block {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    gap: 70px;
}

/*Title alignment*/
.title-info {
    text-align: center;
    padding-top: 60px;
}

/*action area*/

/*Font styling*/
.action {
    color: white;
}

/*Blue container design*/
.blue-container {
    background-color: #3882F6;
    width: 50%;
    height: 50%;
    border-radius: 10px;
}

/*Button design*/
.blue-container button {
    background-color: #3883F6;
    border: 2px solid white;
    border-radius: 4px;
    color: white;
    font-weight: 590;
    padding: 5px 25px;
}

/*Centralize the blue container*/
.action {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*flexbox parts*/
.blue-container {
    display:flex;
    justify-content: space-around;
    padding: 10px;
}

/*Centralize the button*/
.intern-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*Remove the space between h3 and p situated inside the class h3-p*/
.h3-p h3, .h3-p p {
    margin: 0;
}

/*Centralize the title and the description*/
.h3-p {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 80%;
}

/*Hero section*/

/*Colors and font styles*/
.column-left h1 {
    font-size: 48px;
    color: #F9FAF8;
    font-weight: 900;
}

.column-left p, .right a {
    font-size: 18px;
    color: #E5E7EB;
}

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

#div-button button {
    color: white;
    background-color: #3882F6;
    padding: 8px 26px;
    border-radius: 5px;
    border-color: #3882F6;
    font-weight: 700;
}

.header-top ul, .right li, .right li a {
    list-style: none;
    text-decoration: none;
}

.header-center img {
    width: 600px;
    height: 240px;
    object-fit: cover;
    object-position: center;
    flex: 0 1 auto;
}

/*Header top*/
.header-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-shrink: 1;
    width: 700;
    padding-bottom: 120px;
    padding-left: 5px;
}

.right {
    display: flex;
    gap: 60px;
}

/*Header center*/
.header-center {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}
.column-left {
    display: flex;
    flex-direction: column;
    width: 480px;
    gap: 17px;
    height: 240px;
}

/*Hero flexbox*/
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 0 1 auto;
    flex-wrap: wrap;
}

.inside-hero {
    width: 1000px;  
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

