@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    margin: 20px 0;
    padding: 0;
    max-width: 100%;
    display: block;
    background-color: #fff;
}

.container {
    padding: 10px 24px;
    max-width: 350px;
    display: block;
    margin: auto;
}

.profilepic {
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 9999px;
    width: 120px;
    height: 120px;
    overflow: hidden;
}
.profilepic img {
    width: 100%;
}

section {
    display: block;
}

h1 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 0;
}

#intro h1, #intro p, #intro span  {
    margin: 3px;
}

#intro .container {
  padding: 10px 35px;
}

.social {
  display: flex;
  width: 100%;
  justify-content: left;
}

.social_link {
  margin: 0 0.25rem 0 0.25rem;
  padding: 0.25rem;
  opacity: 1;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.social_link:hover {
  opacity: 0.8;
}

.social_link_circle {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  opacity: 1;
  background-color: rgba(var(--link-background), 1);
  color: rgba(var(--link-color), 1);
  border-radius: 9999px;
}

.social_link_circle:first-child  {
    margin-left: 0;
}

.social_link_circle:hover {
  filter: brightness(1.25);
}

.social_icon {
  max-width: 60%;
  height: auto;
  filter: invert(16%) sepia(1%) saturate(35%) hue-rotate(314deg) brightness(97%)
    contrast(87%);
}



.card {
  width: 100%;
  max-width: 450px;
  height: 160px;
  margin: 20px 0;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: none;
  box-sizing: border-box;
  border: solid 1px #ccc;
  box-shadow: 0px 4px 5px 0px rgb(0 0 0 / 10%);
}

.card a { 
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.card .content .title {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 100%;
  padding: 1rem;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
  transition-duration: .2s;
}
.card .content .title span {
  font-size: 0.9rem;
  background: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  color: #00093e;
  box-shadow: 0px 0px 15px 2px rgba(0,0,0,0.1);
}

.card .background {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -999;
  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#links .card:first-child
{
  animation-delay: 0.5s;
}

#links .card:nth-child(2)
{
  animation-delay: 1s!important;
}

#links .card:nth-child(3)
{
  animation-delay: 1.5s;
}