*{
    margin: 0%;
    padding: 0%;
    border: 0%;
}

header{
   background: url(pexels-arts-1214011.jpg);
   /* background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(pexels-arts-1214011.jpg); */
    background-position: center;
    height: 100vh;
    background-size: cover;
    min-height: 100px;
}
.navbar{
    display: flex;
    justify-content: end;
    position: sticky;
    top: 0;
}
.nav-list{
    display: flex;
    margin-top: 30px;
    margin-right: 60px;
    
 }
.nav-list li{
    font-size: 20px;
    list-style: none;
     padding: 5px 20px;
     
 }
    .nav-list li a{
    text-decoration: none;
    color:white;
    padding: 8px 10px;
   
    }
.nav-list li a:hover{
    background-color: white;
    color:black;
}
.navbar background{
width: 100%;
}

.title{
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.title h1{
    color: white;
    font-size: 70px;
}
main{
    background-color:whitesmoke;
}
.ht{
    text-decoration: none;
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
    padding: 70px;
}
.card-container{
    display:flex;
    justify-content:center ;
    flex-wrap: wrap;
}
.card {
    align-items:center;
    background-color: aliceblue;
    /* background-color:color-mix(in srgb, blue 10%, black 90%); */
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.9);
    padding: 20px;
    margin: 100px;
    color:black;
    text-align: center;
    width: 200px;
    height: 400px;
    cursor: pointer;
    transition: transform 0.2s;
}.card img{
    height: 200px;
    width: 200px;
    border-radius: 110px;
}

.card p{
    padding: 20px;
}

.card:hover {
    transform: scale(1.05);
}
section{
    display: block;
    unicode-bidi: isolate;
    
}
footer {
    display: flex;
    justify-content: space-evenly;
    background-color:rgb(20, 19, 19); 
    color: white;
    padding: 30px;
}
@media(max-width:600px){
    .title h1{
        font-size: 2.5rem;
    }
    .ht{
        font-size: 2rem;
    }
}