*{
    box-sizing: border-box;
    margin:0px;
    padding:0px;
}
.header{
    background-color: rgb(55, 55, 68);
    color:aliceblue;
    padding: 0px 200px;
}
.navbar{
    display: flex;
    justify-content: space-between;
    height:100px;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-weight:bold;
}
.navbar>h3{
    font-size: 50px;    
}
ul{
    display: flex;
    gap: 30px;
    list-style: none;
    
}
a{
    text-decoration: none;
    color: antiquewhite;
}
.header-container{
    display: flex;
    padding:100px 0px;
   

}
.header-container-child{
    justify-content: center;

    display: flex;
    flex-direction: column;    
}
.header-container-child>h4{
    font-size: 75px;
    font-family: 'Lobster', cursive;
}
.header-container-child>p{
    max-width: 600px;
    font-size: 20px;
    padding:40px 5px;
}
.img{
     flex:1;   
    margin-left:250px;    
}
button{
    max-width: fit-content;
    background-color: rgb(35, 105, 185);
    color:white;
    padding:10px 40px;
    border:solid 1px white;
    border-radius: 5px;
    font-size: 15px;
}
.body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.body>h2{
    font-family: 'Abril Fatface', cursive;
    font-size: 40px;
    padding:50px 0px 0px 0px;
    margin-top:100px;
}
.body-container{
    display: flex;
    height: 500px;
    align-items: center;
    padding:0px 100px;
    flex-wrap: wrap;
    gap:15px;
    margin-bottom:100px
}
.body-container>div{
    flex: 1;
}
.main-img{
    height:200px;
    width:200px;
    border: 2px solid rgb(35, 105, 185);
    border-radius: 15px;
    margin-left:90px;
    margin-bottom:50px;
}
.body-container>div>p{
    font-size: 18px;
}
.main-quote{
    display: flex;
    background-color:rgb(199, 195, 195);
    height:400px;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    font-family: 'Dancing Script', cursive;
    flex-direction: column;
    flex:0;
    margin: 0px 200px;
}
.main-quote>p{
    align-self:flex-end;
    margin-right:500px;
    font-size: 20px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.bottom-board{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height:300px;
    background-color: white;
}
.bottom-board-child{
    background-color:  rgb(35, 105, 185);
    font-size:20px;
    color:white;
    padding: 50px 100px;
    border: solid 1px  rgb(35, 105, 185);
    border-radius: 10px;
    display: flex;
    gap:20px;
    font-family:'Times New Roman', Times, serif;
    justify-content: space-between;
    width:1000px;
  
    
   
}
.div-button{
    margin-top: 6px;
}
.bottom-board-child>div>h4{
    font-size: 25px;
}
.footer{
    background-color: black;
    color: white;
    display: flex;
    height:100px;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin: 0px 200px;
}