*{
    margin:0;
    padding: 0;
}

ul{
    list-style-type: none;
}

li a {
    text-decoration: none;
    color: white;
    margin-left: 100px;
    font-size: 2.5rem;
    text-transform: uppercase;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

nav{
    width: 100%;
    height: 60px;
    background-color: rgb(35, 33, 33);
    display: flex;
    align-items: center;
}

nav i{
    margin-right: 15px;
}

.head{
    width: 77vw;
    height: 80px;
    margin: 20px auto;
    background-color: rgba(251, 168, 230,0.5) ; 
    border-radius: 10px;
}

h1{
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(14, 54, 140);
    padding: 10px;
}

p{
    padding: 0px 10px;
    line-height: 1px;
}

.main{
    width: 75vw;
    margin: 18px auto;
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
    gap: 15px;
    grid-auto-rows: 280px;
}

div{
    position: relative;
    border-radius: 10px;
}
div img{
    height: 100%;
    width: 100%;
    transition-delay: 50ms;
    transition-timing-function:cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 10px;
}
div img:hover{
    opacity: 0.5;
    filter: grayscale(80%);
}

div i{
    position: absolute;
    top: 48%;
    left: 50%;
    z-index: 1;
    transform: scale(0);
    transition-timing-function:cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: 50ms;
}
div:hover i{
    transform: scale(3);
}