

   

body {
    font-family: 'Poppins', Arial;
    font-weight:400;
    line-height: 1.5;
    color: #495057;
}
header {
    text-align: left;
}
.navbar {
    align-items: center;
    justify-content: space-between;
    background-color:rgb(129, 163, 235);
    padding: 10px 20px 20px 20px;
    color: white;
    border-radius: 10px;
    min-height: 200px;
    
}
.hero-links {
    display: flex;
    justify-content: space-around ;
    gap: 20px;
    

}
.hero-section {
    color: white;
    justify-content: space-between;
    align-items: center;
    background-color:rgb(129, 163, 235);   
    
}
.hero-title {
    color: white;
    font-size: 2rem;


}
.hero-paragraph {
    font-size: 20px;
    text-align: center;
    justify-content: space-evenly;
    align-items: center;
    
   
}

.container {
    max-width: 1200px;
    max-width: 100%;
    margin: 0 auto;
}
h1 {
    font-size: 7rem;
    color:white;
    padding: 50px 0;
}
h2 {
color: darkblue
}
a {
  text-decoration: none;
  text-align: center;
  padding: 10px;

}
ul {
 list-style-type: none;

}
h1, h2, h3, h4, p  {
    text-align: center;

}
h1 {
    font-size: 4rem;
    color:#ffffff;
}   
.small-text {
    font-size: 15px;
    text-align: center;
}
.btn {
    font-size: 20px;
    text-decoration: none;
    
    
}

.btn-primary:link, .btn-primary:visited {
    color: #ffffff;
    background-color:rgb(129, 163, 235);
    
    
}
.btn-contact:link, .btn-contact:visited {
    color: white;
    background-color: rgb(45, 212, 45);
    border-radius: 5px;
    
    
}
.btn-primary:hover, .btn-primary:active {
    color: #ffffff;
    background-color:darkblue;
    border-radius: 5px;
}
.btn-contact:hover, .btn-contact:active {
    color: white;
    background-color: darkblue ;
    border-radius: 5px;
    

}
.btn-secondary:link, .btn-secondary:visited {
    color: #ffffff;
    background-color: rgb(129, 163, 235);
    
}
.btn-secondary:hover, .btn-secondary:active {
    color: #ffffff;
    background-color: darkblue;
    border-radius: 5px;
}
.highlight {
    color: #ffffff;
    background-color: rgb(45, 212, 45);
    padding: 5px 10px;
    border-radius: 50px;
    display: inline-block;
}
.feature-img {
    max-width: 100%;
    height: auto;
}
.flex.container {
    display: flex;
}
.features-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
    column-gap: 20px;
    justify-items: center;
    align-items: center;
    justify-content: space-evenly;
    margin-bottom: 10px;
}
.description {
    align-items: center;
}

.footer{
    margin-top: 20px;
    display: flex;
    font-size: 10px;
    background-color: rgb(129, 163, 235);
    border-radius: 10px;
    align-items: center;
    justify-content: center;
}
.nav-links {
    display: flex;
    min-height: 100px;
    gap: 20px;
    
}
.card-container {
   display: flex;
   flex-direction: row;
   justify-content: center;
   align-items: center;
   gap: 30px;
   
   
}
.card {
   min-width: 50px;
   width:100%;
   color:  darkblue;
   font-size: 0.75rem;
   text-align: left;
   background-color: white;
   border: 2px solid darkblue;
   border-radius: 10px;
   padding: 5px;
   box-shadow:0px 3px 6px darkblue;
}
.logo {
    margin-top: 20px;
    text-align: center;
    height: 100px;
}

@media (max-width:600px){
.card-container {
    flex-direction: column;
    gap: 5px;
    
}
}
@media (max-width: 600px) {
.card {
    width: 11rem;
    padding: none;
    font-size: 0.2rem;
    
    
}

}  
@media (max-width: 600px) {
h2, h3, h4, p  {
    font-size: 1rem;
}
}
@media (max-width: 600px) {
.btn {
    font-size: 1rem;
    padding: 0.3rem;
}
}
@media (max-width: 600px) {
.hero-links {
    flex-wrap: wrap;
    flex-direction: column;
}
}
@media (max-width: 600px) {
.nav-links {
    flex-wrap: wrap;
    flex-direction: column;
}
}
@media (max-width: 600px) {
h1 {
    font-size: 3rem;
    flex-wrap: wrap;
}
}