html {
    font-family: Inter,Helvetica,Arial,system-ui,-apple-system;
    font-feature-settings: normal;
    color: rgb(0, 0, 0);
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
}

body {
    background-image: radial-gradient(circle, rgba(253,246,248,255), rgba(252,242,246,255), #f4ebf3);
    background-size: cover;
}

a {
    text-decoration: none;
}

#card {
    max-width: 725px;
    display: block;
    margin: auto;
    text-align: center;
    padding-top: 64px;
}

#card h1 {
    display: block; 
    text-align: center;
    font-size: 20px;
    font-weight: 700;
}

#pfp {
    margin-bottom: 21px;
}

#pfp img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100px;
    border-radius: 50%;
}

#links {
    margin-top: 42px;
}

.link-wrapper {
    height: 57px;
    margin-bottom: 16px;
}

.link {
    background-color: transparent;
    color: rgb(0, 0, 0);
    font-weight: 400;
    font-size: 14px;
    height: 57px;
    width: 100%;
    border: 2px solid rgb(255, 14, 243);
    transition-duration: 0.25s;
    position: relative;
}

.link .icon
{
    width: 53px;
    height: 53px;
    left: 0;
    top: 0;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(0, 0, 0);
}

.link .icon img 
{
    height: 86%;
}

.link:hover {
    cursor: pointer;
    color: white;
    background-color: rgb(255, 14, 243);
    box-shadow:0 10px 16px 0 rgba(0,0,0,0.01),0 6px 20px 0 rgba(0,0,0,0.01);
}

.link:hover img {
    box-shadow:0 10px 16px 0 rgba(0,0,0,0.005),0 6px 20px 0 rgba(0,0,0,0.005);
}

.anim {
  animation-duration: 2s;
  animation-fill-mode: both;
}

.vs { animation-name: vs; animation-iteration-count: infinite }

@keyframes vs {
    4.16% { 
        transform: translateY(6px); 
    }
    8.33% { 
        transform: translateY(-6px); 
    }
    12.48% { 
        transform: translateY(3px); 
    }
    16.66% { 
        transform: translateY(-2px); 
    }
    20.81% { 
        transform: translateY(1px); 
    }
    25% { 
        transform: translateY(0px); 
    }
}
