
html{
    box-sizing: border-box;
}

*,
*::before,
*::after{
    box-sizing: inherit;
}

body{
   font-family: "Roboto", sans-serif;
   min-height: 100vh;
   margin: 0;
   padding: 0;
   display: flex;
   flex-direction: column;
}

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

.header,.information,.quotes,.actions,.footer{
    flex:1;
    padding:1px;
    align-items: center;
    justify-content: center;
    display: flex;
}

.hero{
    padding: 50px 0;
}

.container{
    flex:1;
    display: flex;
    margin: 0 100px;
    gap:16px;
    justify-content: space-between;
    align-items: center;
}

.logo{
    flex:1;
    min-width: fit-content;
    font-size: 24px;
    color:#F9FAF8;
    margin-right:auto;
}

ul{
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    gap:16px
}

a,.text{
    font-size: 18px;
    color:#6d747d;
    text-decoration: none ;
}

.hero .text{
    color:#b5b8bf;
}

.hero-text{
    display: flex;
    flex:1;
    flex-direction: column;
    gap:8px;
}

h1{
    font-size: 48px;
    color: #F9FAF8;
    font-weight: 900;
    padding: 0;
    margin: 0;
}

button{
    color: #F9FAF8;
    border:0;
    width: 80px;
    background-color:#3882f6;
    border-radius: 5px;
    padding: 5px;
    align-self: flex-start;
    cursor: pointer;
}

.hero-image{
    background-color: #6d747d;
    color: #E5E7EB;
    flex:1;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}

.information .container{
    flex-direction: column;
}

.information{
    padding: 0 0 50px;
}

h2{
    flex:1;
    font-size: 36px;
    color:#1F2937;
    font-weight: 900;
}

.image-box{
    display: flex;
    padding:0 60px;
    gap:8px;
}

.image-box .box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:2px;
}

.image{
    border:2px solid #3882f6;
    border-radius: 10px;
    width: 160px;
    height: 160px;
}

.box .text{
    color: #596370;
    text-align: center;
}

.quotes{
    padding: 50px 0;
    background-color: #E5E7EB;
}

.quotes .container{
    padding:0 60px;
    flex-direction: column;
}

.quotes .text{
    font-size: 36px;
    font-style: italic;
    color: #1F2937;
    font-weight: 300;
}

.author{
    align-self: flex-end;
    font-size: 24px;
}

.actions{
    padding: 40px 0;
}

.tab{
    background-color: #3882f6;
    border-radius: 5px;
    display: flex;
    flex :1;
    flex-direction:row;
    padding:10px 20px;
    gap:8px;
}

.summary .head{
    font-size: 24px;
    color:#F9FAF8;
}

.summary .body{
    color:#b5b8bf;
}

.tab button{
    margin-left:auto;
    align-self: center;
    border:1px solid #F9FAF8;
}

.footer .text{
    color:#b5b8bf;
    margin:auto;
    display: flex;
    padding: 10px;
}


