body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: capitalize;
  background-color: #a2aadb;
  box-sizing: border-box;
}
.nave {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: end;
  align-items: end;
  text-align: end;
  justify-content: space-between;
 
}
.nave-bar {
  display: flex;
  background-color: #254d70;
  width: 100%;
  /* align-items: end;
  justify-content: end; */
  justify-content: space-between;
}
.nave-bar ul {
  display: flex;
  gap: 40px;
  margin-right: 30px;
  font-size: 20px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  transition: 0.9s ease;
}
.logo {
  margin: 10px;
  
  color: white;
  cursor: pointer;
  animation: puls 1s infinite;
}

.nave-bar ul :hover {
  color: #4e71ff;
  cursor: pointer;

  transform: scale(1.1);
}
ul li {
  list-style: none;
}
ul li a {
  text-decoration: none;
  cursor: pointer;
  color: #7965c1;
  /* margin-right: 60px; */
  background-color: #ef88ad;
  padding: 14px;
  border-radius: 50px;
}

.contenar {
  justify-content: space-between;
  display: flex;
}
.card {
  justify-content: space-between;
  display: flex;
  box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px,
    rgba(6, 24, 44, 0.65) 0px 4px 6px -1px,
    rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
  margin: 10px;
  margin-right: 40px;
  transition: 0.9s ease;
}
.card:hover {
  transform: scale(1.1);
  cursor: pointer;
}
img {
  width: 250px;
  height: 300px;
  cursor: pointer;
}
.name {
  background-color: #c4e1e6;
  margin-top: 0;
  width: 300px;
  text-align: center;
  margin-left: 40%;
  border-radius: 30px;
  color: #b31c1c;
  transition: 0.9s ease;
  transform: skewY(8deg);
}
.name:hover {
  color: chartreuse;
  cursor: pointer;
  transform: scale(1.4);
  transform: rotateY(8deg);
}
footer {
  background-color: #0b1d51;
  padding: 5px;
  color: white;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 20px;
  font-weight: bold;
}
@keyframes puls{
    0%,100%{
        transform:scale(1);
       }
       100%{
        transform: scale(1);
       }
       100%{
        transform: scale(1.1);
       }
}
]

