body{
    font-family: Arial, sans-serif;
    background-color:lightgray;
}

nav{
    background-color: rgba(43, 6, 207, 0.74);
    padding: 20px;
    border-radius: 25px 0 25px 0;
    
}
nav h2{
    color: whitesmoke;
    margin-bottom: 10px;
}
nav a{
    color: rgb(216, 216, 216);
    text-decoration: none;
}

.nav-links{
    display: flex;
    justify-content: center;
    gap: 20px;
}
header{
    text-align: center;
    padding: 60px;
    margin: 30px;
    border-radius: 15px;
    box-shadow: 0 0 10px blue;
}

h1{
    color: darkblue;
    margin-bottom: 20px;
}

p{
    color: rgb(0, 0, 0);
   line-height: 1.6;
   
}

button{
    background-color: blue;
    color: white;
    font-size: 15px;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition:  background-color 0.05s, opacity 0.03s;

}

button:hover{
    background-color: black;
    color: lightgray;
}

button:active{
    opacity: 0.3;
}

section{
    padding: 30px;
    margin: 30px;
    border-radius: 15px;
    box-shadow: 0 0 10px blue;
}

section h2{
    color: darkblue;
}
.features{
    display: flex;
    gap: 20px;
}
.features div{
    background-color: lightgray;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(102, 106, 141);

}
@media (max-width: 768px) {
nav{
    text-align: center;
}
.nav-links{
    justify-content: center;
    gap: 10px;
}
header{
    padding: 30px;
}
.features{
    flex-direction: column;
}
}
.cta{
    background-color: rgba(43, 6, 207, 0.74);
    padding: 50px;
    margin-bottom: 30px;
    text-align: center;
    border-radius: 15px;
    
} 
.cta h2{
    color: whitesmoke;
}
.cta p{
    color: whitesmoke;
}
.action{
    background-color: whitesmoke;
    color: blue;
    font-size: 15px;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition:  background-color 0.05s, opacity 0.03s;
}


.action:hover{
     background-color: black;
     color: lightgray;
}
.action:active{
   opacity: 0.3;
}

.closing{
     text-align: center;
     background-color: rgba(43, 6, 207, 0.74);
     padding: 20px;
     border-radius: 0 15px 0 15px;
     margin-bottom: 30px;
    
   
}
.closing p{
color: white ;
}