
body{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    font-family: 'Roboto', sans-serif;
    flex: 1 1 auto;
}



.header{
    display: flex;
    justify-content: space-between;
    
}
.logo{
    font-size: 24px;
    color: #F9FAF8;
    font-style: Roboto;
    font-weight: 900;
    margin-left: 150px;
    padding: 8px 0;
}
.links{
    margin-right: 285px;
    padding: 8px 0;
    font-size: 18px;
    color: #F9FAF8;
    
}

a{
    margin-left: 7px;
    
}
.top .left{
    margin-left: 150px;
    width: 600px;
}
.top .left button{
    border: none;
}

.top .right{
    width: 600px;


}
.placeholderIMG{
    width: 500px;
    height: 200px;
    background-color: gray;

    

    text-align: center;
}

.placeholderIMG img{
    margin-top: 100px;
    margin-bottom: 100px;
   

    
}



.header, .footer{
    height: 72px;
    background-color: #1F2937;
    margin: -10px;
    padding: 10px;
    box-sizing: border-box;
    flex-shrink: 1;
}

h1{
    font-size: 48px;
    color: #F9FaF8;
    font-weight: 900;
}

.links, .heroSecondary, .footer{
    font-size: 18px;
    color:#E5E7EB
}

button{
    background-color: #3882F6;
    border-radius: 5px;
    color: white;
    padding: 8px 20px;
}

.top{
    display: flex;
    flex-grow: 2;
    background-color: #1F2937;
    padding: 20px;
    height: 400px;
    border: 0;
    margin: -10px;
}

.top .right{
    /*align-self: center;*/
    margin:auto
}

.upperMiddle{
    flex-grow: 2;
    height: 400px;
}

.midBoxContainer{
    display: flex;
    justify-content: center;
    gap: 20px;
}
.midBoxContainer div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
}

.midBoxContainer div div{
    border-radius: 10px;
    border-color: #3882F6;
    border-style: solid;
    
    width: 150px;
    height: 150px;

}
img{
    border-radius: 8px;
}
.midBoxContainer div p{
    font-size: 18px;
    color:#5e6268;

}

.upperMiddle p{
    font-size: 36px;
    color: #1F2937;
    font-weight: 900;
    text-align: center;
}
.lowerMiddle{
    flex-grow: 2;
    height: 400px;
    background-color: #E5E7EB;
    margin: -10px;
    display: flex;
}
.lowerMiddle .textBox{
    margin:auto;
    width: 800px;
}

.lowerMiddle .textBox .quote{
    font-size: 36px;
    font-style: italic;
    color: #1F2937;
}

.lowerMiddle .textBox .signature{
    text-align: end;
    font-size: 24px;
    font-weight: 600;
    
}

.bottom{
    flex-grow: 2;
    height: 350px;
    margin: -10px;
    display: flex;

    
}

.bottom div{
    margin: auto;
    background-color: #3882F6;
    border-radius: 5px;
    color: white;
    display: flex;
    padding: 15px;
    width: 1000px;
    

}

.bottom div .bottomLeft{
    display: flex;
    flex-direction: column;
    padding: 15px 30px;
    
}


.bottom div .bottomLeft h2{
    

}

.bottom div .bottomLeft p{
    margin-top: -10px;
    
}
.bottom div .bottomRight{
    padding: 15px 30px;
    justify-self: flex-end;
    display: flex;
}
.bottom div .bottomRight button{
    border-color: white;
    margin-left: auto;
    margin-right: 40px;
    /*border-style: solid;*/
    
}


.footer{
    text-align: center;
    
}


