body{
    margin: 0;
    padding: 0;
}

.navbar{
    display: flex;
    justify-content: center;
    background-color: rgb(33, 71, 111);
    color: white;
    gap: 200px;

}

.nav-links{
    display: flex;
    list-style: none;
    align-items: center;
    gap: 20px;
}

.nav-links a{
    color: white;
    text-decoration: none;
}


.box1{
    display: flex;
    flex-direction: column;
}

.box1 h1{
    color: white;
}

.box1 p{
    width: 350px;
    color: white;
}
.box1 button{
    width: 100px;
    height: 27px;
    background-color: rgb(20, 119, 199);
    border: 0;
    color: white;
    border-radius: 5px;
}

.section1{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(33, 71, 111);
    height: 40vh;
    padding-bottom: 30px;
    gap: 220px;
}

.section2{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    padding-top: 20px;
    padding-bottom: 50px;
}

.card-container{
    display: flex;
    align-items: center;
    margin-top: 30px;

}

.card{
    display: flex;
    width: 200px;
    flex-direction: column;
    text-align: center;
    align-items: center;
}
.image-placeholder{
    width: 150px;
    height: 150px;
    border: 3px solid black;
    border-radius: 12px;
}

.section3{
    background-color: rgb(239, 239, 239);
    width: 100%;
    padding-top: 150px;
    padding-bottom: 150px;
    text-align: center;
}

.section3 p{
    font-style: italic;
    font-size: 30px;
}

.section4{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 30vh;
}

.container{
    display: flex;
    background-color: rgb(27, 140, 227);
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    width: 8in;
    height: 1.5in;
    gap: 90px;
}

.container button{
    margin: 0;
    padding: 7px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 5px;
    color: white;
}

.box2{
    margin: 0;
    color: white;
}

.box2 h5{
    margin: 0;
    font-size: 20px;
}

.box2 p{
    font-size: 15px;
    margin: 0;
}

.footer{
    display: flex;
    flex-direction: column;
    background-color: rgb(33, 71, 111);
    text-align: center;
    align-items: center;
    color: white;
    font-size: 11px;
    padding: 10px;
    height: 100%;
    width: 100%;
}