*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
/*Edit for navbar starts here*/
.header{
    display: flex;
    background-color: #1f2937;;
    justify-content: space-between;
    padding: 20px 30px;
    align-items: center;
}
.navbar .links{
    display: flex;
    gap: 8px;
}
.navbar h1{
    font-size: 24px;
    color: #f9faf8;
}
.navbar .links a{
    text-decoration: none;
    font-size: 18px;
    color: #f9faf8;
}
.navbar .links a:hover{
    color: #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}
/* Edits for the showcase starts here */
.img{
    width: 200px;
    height: 200px;
    background-color: lightslategrey;
}
.showcase .container{
    display: flex;
    justify-content: center;
    padding: 50px;
    background-color: #1f2937;
} 
.showcase .content{
    display: flex;
    max-width: 100%;
    max-height: 100%;
    flex-wrap: wrap;
}
.showcase .left-content,.showcase .right-content{
    display: flex;
    width: 300px;
    flex-wrap: wrap;
}
.showcase .showcase-text{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 10px
}
.showcase-text h1{
    color: #f9faf8;
    font-size: 48px; 
    padding: 10px;
}
.showcase-text p{
    color: #e5e7eb;
    font-size: 18px;
    padding: 10px;
}

.right-content .showcase-image{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 20px
}
.right-content{
    display: flex;
    justify-content: center;
}
.right-content .image-text{
    display: flex;
    padding-top: 10px;
    width: 200px;
    color: #1f2937;
}
.right-content .image-text:hover{
    color: #e5e7eb;
}
/* Edits for the testimonials starts here */
.testimonial img{
    width: 100px;
    height: 100px;
    margin-left: 10px;
}
.testimonial{
    display: flex;
    background-color: #f9faf8;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.testimonial-container{
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 40px 0px;
    gap: 10px; 
}
.card{
    display: flex;
    background-color: white;
    flex-direction: column;
    border: 2px solid #3882f6;
    border-radius: 20px;;
    padding: 10px;
    width: 200px;
    max-height: 100%;
}
.card .image-text{
    display: flex;
    justify-content: center;
    padding: 10px;
}
.card .image{
    display: flex;
    justify-content: center;
}
/* quote section starts here */
.quote{
    display: flex;
    background-color: #e5e7eb;
    display: flex;
    justify-content: center;
    width: 100vw;
    
}
.quote-text{
    display: flex;
    padding: 40px 0;
    flex-direction: column;
    width: 80vw;
}
.quote-text .text{
    font-size: 36px;
    font-style: italic;
    color: #1f2937;
}
.quote-text .author{
    display: flex;
    padding: 10px;
    justify-content: end;
    font-size: 36px;
    font-weight: bolder;
}

/* signup section starts here */

.signup{
    background-color: #f9faf8;
}
.signup-container{
    display: flex;
    justify-content: center;
    height: 150px;
}
.signup .content{
    margin: 40px 0;
    display: flex;
    height: 100px;
    background-color: #3882f6;
    color:#f9faf8;
    border-radius: 30px;
    padding: 30px;
    align-items: center;
    gap: 50px;
}
.signup button{
    width: 70px;
    height: 40px;
    background-color: #3882f6;
    color: #f9faf8;
    border: 1px solid #f9faf8;
    border-radius: 10px;
    padding: 5px;
    font-size: 15px;
    font-weight: bold;
}
footer{
    display: flex;
    
}
.footer{
    display: flex;
    box-sizing: border-box;
    justify-content: center;
    background-color: #1f2937;
    height: 80px;
    width: 100vw;
}
.footer-text{
    padding: 40px;
    color: #f9faf8;
}