* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  list-style: none;
  vertical-align: baseline;

}
.background-image {
  background-image: url("../../content/bgErgon.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.navbar {
  position: fixed;
  display: flex;
  z-index: 1000;
  justify-content: space-around;
  height: 100px;
  width: 100%;
  backdrop-filter: blur(2px) saturate(180%);
  -webkit-backdrop-filter: blur(2px) saturate(180%);
  background-color: rgba(22, 9, 49, 0.75);
}
.main-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 7rem;
  z-index: 1;
  height: 100%;
  width: 60%;
  backdrop-filter: blur(2px) saturate(180%);
  -webkit-backdrop-filter: blur(2px) saturate(180%);
  background-color: rgba(22, 9, 49, 0.75);
  border-radius: 1rem;
  padding: 5rem;
  gap: 1rem;
}
.main-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: rem;
}
.main-title{

}
.card {
  --blur: 16px;
  --size: clamp(150px, 50vmin, 300px);
  width: var(--size);
  aspect-ratio: 3 / 4;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  color: #f3f3f3;
  transform: translateZ(0);
}
.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(calc(1 + (var(--hover, 0) * 0.15)));
  transition: transform 0.3s;
}
.card__footer {
  padding: 0 1.5rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-row: auto auto;
  gap: 0.5ch;
  background: hsla(0, 0%, 100%, 0.089);
  backdrop-filter: blur(var(--blur));
  height: 30%;
  align-content: center;
}
.card__footer span:nth-of-type(1) {
  font-size: calc(var(--size) * 0.065);
}

.card__footer span:nth-of-type(2) {
  font-size: calc(var(--size) * 0.035);
}

.card:is(:hover, :focus-visible) {
  --hover: 1;
}

/* .list{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap:0.5rem;
}
.btn{
    padding: 0.3rem;
    border-radius: 0.5rem;
    cursor: pointer;
}
.btn-default{
    padding: 0.3rem;
    padding-inline: 2rem;
    border-radius: 0.5rem;
    color: #F2F2F2;
    transition: 0.3s;
    cursor: pointer;
    background-color:transparent;
}
.btn-default:hover{
    background-color: rgba(147, 93, 255, 0.75);
}
.btn-default:active{
    background-color: rgba(147, 93, 255, 0.932);
    transition: 0.1s;
}
.btn-primary{
    background-color:#7f43e1;
    color: #F2F2F2;
    transition: 0.2s;
}
.btn-primary:hover{
    background-color:#652be0;
    color: #F2F2F2;
}
.btn-primary:active{
    background-color:#834cfa;
    color: #F2F2F2;
} */

.img-logo {
  align-self: center;
  width: 106px;
  height: 32px;
}
.contrast {
  background: -webkit-linear-gradient(32deg, #7f43e1, #652be0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.title {
  font-size: 3rem;
  font-weight: 700;
}
.text-xl {
  font-size: larger;
}
.text-xxl {
  font-size: xx-large;
  font-weight: 700;
}
.white-text {
  color: #f2f2f2;
}
.circle-crop {
  background-color: #652be0;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  overflow: hidden;
}

.text-shadow {
  text-shadow: rgb(0, 0, 0) 1px 0 15px;
}

@media (max-width: 650px) {
  .card-content {
    flex-direction: column;
    align-items: center;
  }
  .card-body {
    width: 50%;
    backdrop-filter: blur(2px) saturate(180%);
    -webkit-backdrop-filter: blur(2px) saturate(180%);
    background-color: rgba(22, 9, 49, 0.75);
    border-radius: 0.5rem;
  }
}
