.card-image {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  
}
body{
  margin: 0;
  padding: 0;
  background-color: rgb(204, 226, 252);
  font-family: cursive;
  background-image: linear-gradient(to right, rgb(58, 146, 253), rgb(207, 207, 207));
  background-repeat: no-repeat;
  height: 880px;
  zoom: 1;
}
nav {
  background-color:rgb(32, 32, 32);
  display: flex;
  justify-content: space-around;
}
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20rem;
}
button {
  background-color: rgb(32, 32, 32);
  border: none;
  font-size: x-large;
  padding: 10px 30px 10px 30px;
  font-family: cursive;
  color: white;
}
button:hover {
  background-color: rgb(182, 211, 255);
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 4px;
  color: black;
}
@media screen and (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  button {
    font-size: large;
    padding: 8px 20px;
  }
  .card-image {
    width: 150px;
    height: 150px;

  }
  body {
    height: auto;
    background-repeat: no-repeat;
    background-position: cover;
    background-size: cover;
    background-attachment: fixed;
    font-size: medium;
    padding: 10px;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
}
