/* Nav css */
.nav-center{
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    background-color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.nav-links{
    display: flex;
    list-style-type: none;
}
h4{
    color: blueviolet;
}
.nav-links li{
    padding-left: 30px;
}
a{
    color: black;
    text-decoration: none;
}
a:active {
    color:rgb(73, 73, 245);
}
/* Container css */
.container{
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

h2 {
    margin: auto;
    margin-top: 100px;
    margin-bottom: 30px;
    background-color: rgb(95, 90, 90);
    color: white;
    font-size: 30px;
    padding-top: 20px;
    padding-bottom: 40px;
    width: 660px;
    height: 10px;
    border-radius: 10px;
}

.color {
    color: rgb(73, 73, 245);
}

/* Botton css */
.btn {
    background-color: transparent;
    padding: 20px;
    border: 1px solid black ;
    cursor: pointer; 
    font-size: 20px;
    border-radius: 10px;
}

.btn:hover{
    background-color: rgb(59, 59, 59);
    color: rgba(255, 255, 255, 0.911);
}
.btn:active{
    background-color: black;
    color: whitesmoke;
}


