body,
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


nav {
    width: 100%;
    background-color: rgb(237, 232, 225);
    display: flex;
    justify-content: center;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
}
body{
    padding-top: 60px;
}

nav .container {
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    a:hover {
 color: blueviolet;
  font-size: 18px;
}
}

nav ul.nav_links {
    display: flex;
    list-style: none;
}

nav ul.nav_links li {
    margin: 0 10px;
}

nav ul.nav_links li a {
    text-decoration: none;
    color: black;
    font-weight: 600;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
     a:hover {
  background-color: yellow;
  font-size: 18px;
}
}

nav .logo {
    font-size: 28px;
    color: blueviolet;
    font-weight: bolder;
    font-family: Arial, Helvetica, sans-serif;
     a:hover {
  background-color: yellow;
  font-size: 18px;
}
}

#services {
    width: 100%;
    padding: 15px 0;
    background: #EEAECA;
    background: radial-gradient(circle, rgb(241, 139, 139) 0%, rgb(112, 111, 197) 100%);
    display: flex;
    justify-content: center;
}
#services .container{
    width: 85%;
}

.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;

}
.cards .card{
    width: 350px;
    height: 150px;
    background-color: rgb(255, 255, 255);
    border-radius: 17px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;

}

.card .card-icon {
    font-size: 60px;
}
.card .card-title{
    font-size: 24px;
    font-weight: bold;

}
.card .description{
    text-align: center;
    a:hover {
  background-color: yellow;
  font-size: 18px;
}
}

#home {
    width: 100%;
    height: 800px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url(https://assets1.ignimgs.com/thumbs/userUploaded/2020/9/21/wwe2kbattlegroundsblogroll-1600713483396.jpg?width=1280&format=jpg&auto=webp&quality=80) ;
}

#services div.card img{
    transition: all 1s ease-in-out;
}

#services div.card img:hover{
     transform: rotate(360deg) !important; 
}