*{
    box-sizing: border-box;
    font-family: "Roboto";
}
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.hero,
.info,
.quote,
.action {
    display: flex;
    justify-content: center;
}
.hero-container,
.info-container,
.quote-container,
.action-container {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}
.info-container,
.quote-container {
    flex: 0 1 860px;
}
.hero-container,
.action-container {
    flex: 0 1 1100px;
}


/* css for HERO */
.hero{
    background: #1F2937;
}
.header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 28px;
    padding-top: 28px;
}
.logo {
    font-size: 24px;
    font-weight: 900;
    color: #F9FAF8;
}
.links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    font-size: 18px;
    color: #E5E7EB;   
}
a:hover {
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}
.content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap-reverse;
    padding: 140px 0;
}
.texts {
    flex: 1;
    max-width: 460px;
}
.main-text {
    font-size: 48px;
    color: #F9FAF8;
    font-weight: 900;
    padding: 0;
}
.secondary-text {
    font-size: 18px;
    color: #E5E7EB;
    padding: 16px 0;
}
button {
    font-size: 18px;
    font-weight: 900;
    background: #3882F6;
    color: white;
    padding: 8px 32px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
button:hover {
    background-color: #7cabf7;
    box-shadow: inset 8px white;
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}
.image {
    font-size: 18px;
    flex: 0 1 550px;
    min-height: 246px;
    color: white;
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}


/* css for INFORMATION */
.info-header {
    font-size: 36px;
    color: #1F2937;
    font-weight: 900;
    text-align: center;
    padding: 48px;
}
.info-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}
.item {
    flex: 0 0 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.img {
    border: 5px solid #3882F6;
    border-radius: 20px;
    width: 170px;
    flex: 0 0 170px;
}
.img-info {
    font-size: 18px;
    color: rgb(100, 100, 100);
    text-align: center;
    padding: 8px 0;
}
.info-container {
    padding-bottom: 140px;
}

/* css for Quote */
.quote-container {
    padding: 140px 20px;
}
.quote {
    background: #E5E7EB;
}
.quote-text {
    font-size: 36px;
    font-weight: 100;
    font-style: italic;
}
.name {
    font-size: 28px;
    font-weight: 1000;
    align-self: flex-end;
}

/* css for Call for action */
.action-container {
    flex-flow: row wrap;
    align-items: center;
    background: #3882F6;
    color: white;
    border-radius: 10px;
    justify-content: space-around;
    gap: 16px;
    padding: 60px 20px;
    margin: 100px 20px;
}
.primary-text {
    font-size: 28px;
    font-weight: 900;
}
.sign-up-text {
    font-size: 18px;
}
.action-container button {
    border: 2px solid white;
}

/* css for FOOTER*/
.footer {
    background: #1F2937;
    color: white;
    font-size: 20px;
    text-align: center;
    padding: 40px 20px;
}