/* font.family: Faustina */

* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

body {
  background-image: url(under\ sea\ background.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 700px;
}
.card {
  width: 700px;
  height: max-content;
  margin: auto;
  margin-top: 70px;
  border-radius: 30px;
  padding: 20px 30px;
  backdrop-filter: blur(25px);
  background-color: rgb(255, 255, 255, 0.3);
  border: 1.5px solid rgb(255, 255, 255, 0.5);
  display: flow-root;
}

.card {
  & a {
    text-decoration: none;
    color: black;
    position: relative;
    padding: 3px 5px;
    transition: all 0.5s ease;

    &:hover {
      color: white;
    }
  }

  & a::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 10%;
    background-color: rgb(7, 157, 191);
    left: 0;
    bottom: 0;
    border-radius: 5px;
    z-index: -1;
    transition: all 0.5s ease;
  }

  & a:hover::after {
    height: 100%;
  }
}

img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  float: left;
  margin: 0 15px 12px 0;
  border-radius: 35px;
  object-position: center;
}

h2 {
  text-align: center;
  font-size: 30px;
  padding-bottom: 15px;
}

p {
  font-size: 20px;
  margin-bottom: 10px;
}
