@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
body {
  margin: 0;
  padding: 0;
  border: 0;
  background-color: #000;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #fff;
}
.wrapper {
  margin: 0 8vw;
}

.header {
  height: 80px;
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.css-blurry-gradient {
    position: fixed;
    top: 4%;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 800px;
    height: 800px;
    border-radius: 50% 22% 40% 80%;
    filter: blur(100px);
    background: radial-gradient(circle, rgba(63, 94, 251, 1) 0%, rgba(252, 70, 107, 1) 100%);
    opacity: 0.3;
  }

.header p {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #c4f5d9;
}
.container{
    text-align: center;
}

h1 {
    font-size: 90px;
    font-weight: 900;
    letter-spacing: 2px;
    margin: 10px 0 0 0;
    line-height: 1.2;
}

h2 {
    font-size: 20px;
    font-weight: 100;
    letter-spacing: 1px;
    margin: 0 auto;
    max-width: 50vw;
    margin-top: 38px;
    line-height: 1.6;
}

.allcards{
    display: flex;
    flex-wrap: wrap;
    margin: 100px 0;
}

.card{
    width: calc(50% - 32px);
    margin: 16px;
}

.card a{
    text-decoration: none;
    position: relative;
}

.card .overlay{
    position: absolute;
    width: 100%;
    /* height: 100%; */
    background: rgb(0 0 0 / 74%);
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 62px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 1px;
    opacity: 0;
    transition: all 0.4s ease;
}

.card a:hover .overlay{
    opacity: 1;
}

.card_img{
    width: 100%;
}

.card_img img{
    width: 100%;
    border-radius: 8px;
}

.card_info{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card_info p:first-child{
    margin: 8px 0 16px 0px;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: 800;
    font-size: 26px;
}

.card_info p:last-child{
    margin: 8px 0 16px 0px;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: 100;
    font-size: 16px;
    text-transform: uppercase;
}