*{
    margin:0;
    padding: 0;
    font-family:sans-serif;
    box-sizing: border-box;
 
}

body{
    background-color: rgb(27,27,27);
    
} 
#nav{
    position: fixed;
    z-index: 100;
    top:0;
    left: 0;
    width:100%;
    height: 80px;
    padding: 10px 90px;
    box-sizing: border-box;
    background: rgba(0,0,0,0.5);
}
#nav .logo{
    padding:22px 20px;
    height: 80px;
    float:left;
    font-size: 28px;
    /* font-weight: bold; */
    color:skyblue;
    font-family:orpheus;
    font-style: italic;

}
#nav ul{
    list-style: none;
    float: right;
    margin: 0;
    padding: 0;
    display: flex;
}
#nav ul li a{
    line-height: 80px;
    color: #e2472f;
    padding: 12px 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
    font-family: optima;
}
#nav ul li a:hover{
    background: rgba(0,0,0,0.7);
    border-radius:6px;
}
#nav ul li a.active{
    background: #e2472f;
    color:black;
    border-radius: 6px;
}
.container{
    display:flex;
    margin-top: 8%;
    justify-content: center;
    flex-wrap: wrap;
}


.card{
    background: white;
    width:280px;
    margin:10px;
    border-radius: 15px;
}
.card-image{
    height:170px;
    width:100%;
    margin-bottom:15px;
    border-radius: 15px 15px 0 0;
    
}
.image1{
 width:100%;
 height: auto;
}
.card h2{
    padding: 10px;
}
.card p{
    padding: 10px;
}
.card a{
    background-color: black;
    color: white;
    padding: 15px 20px;
    display: block;
    text-align: center;
    margin:20px 50px;
    text-decoration: none;
}
.card:hover {
    background-color: rgb(62,62,62);
    color: white;
    cursor:pointer;
    transform: scale(1.03);
    transition:all 1s ease;
}