* {
    padding: 0;
    margin: 0;

    -webkit-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    transition: all .3s ease;
}

#myVideo {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%; 
    min-height: 100%;
}

html, body {
    height: 100%;
    width: 100%;
    
    background-color: #111;
    font-family: 'Poppins', sans-serif;
    color: #DDD;

    overflow-x: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* themes */
.poppins {
    font-family: 'Poppins', sans-serif;
}

.montserrat {
    font-family: 'Montserrat', sans-serif;
}

.chillax {
    font-family: 'Chillax', sans-serif;
}

.garamond {
    font-family: 'Cormorant Garamond', serif;
}

.creepster {
    font-family: 'Creepster', cursive;
}

.ropa {
    font-family: 'Ropa Sans', sans-serif;
}

.cute {
    font-family: 'Cute Font', cursive;
}

.trebuchet {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.sora {
    font-family: 'Sora', sans-serif;
}

/* flexbox */

.flex { display: flex; }
.row { flex-direction: row; }
.column { flex-direction: column; }
.center-horizontal { justify-content: center; }
.center-vertical { align-items: center; }
.wrap { flex-wrap: wrap; }
.nowrap { flex-wrap: nowrap; }

/* gaps */
.gap { gap: 1rem; }
.gap-y { row-gap: 1rem; }
.gap-x { column-gap: 1rem; }

.gap-sm { gap: 0.5rem; }
.gap-y-sm { row-gap: 0.5rem; }
.gap-x-sm { column-gap: 0.5rem; }

.gap-lg { gap: 1.5rem; }
.gap-y-lg { row-gap: 1.5rem; }
.gap-x-lg { column-gap: 1.5rem; }

/* sizing */
.w-full { width: 100%; }

/* text */

a { text-decoration: none; color: inherit; }
.center { text-align: center; }

/* content */
section {
    padding: 25px;
}

/* profile */

.mt {
    margin-top: 20px;
}
.avatar {
    border-radius: 100%;
    object-fit: cover;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 150px;
    max-width: 150px;
    height: 150px;
}


.username {
    font-size: 20px;
    font-weight: 750;
    line-height: 22px;
}

.bio {
    font-size: 16px;
    margin-top: 5px;
    font-weight: 600;
    line-height: 16px;
    text-align: center;
}

.badge {
    height: 22px;
    width: 22px;
}

.badge-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.activity {
    font-size: 13px;
    margin-top: 5px;
    font-weight: 500;
    line-height: 14px;
}

/* links */
.container {
    display: flex;
    width: 100%;
    max-width: 1000px;
    gap: clamp(.5rem, 2vw, 1rem);
    flex-wrap: wrap;
}

.card-container {
    position: relative;
    display: flex;
    flex: 1 1 450px;
}

.card {
    position: relative;
    display: flex;
    background-color: #222;
    height: fit-content;
    padding: 25px;
    border-radius: 7.5px;
    flex: 1 1 450px;
    align-items: center;
}

.link-left {
    display: flex;
    flex-direction: row;
    font-size: 20px;
    font-weight: 800;
    padding: 0;
    margin: 0;
    gap: 16px;
}

.link-left i {
    font-size: clamp(22px, 3vw, 30px);
}

.icon-container {
    position: absolute;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: transform .3s ease;
    font-size: 20px;
    right: 25px;
}

.card:hover > .link-left i {
    transform: translate(0, -6px);
}

.card:hover > .icon-container {
    transform: translate(6px, 0);
}

.card:hover {
    box-shadow: 0 0 0 1px;
}

@media only screen and (max-width: 500px) {
    .icon-container {
        display: none;
    }
}

.full {
    flex: 2 100%;
}
@keyframes pulse {
    0% {
        right: 0px;
        bottom: 0px;
        width: 100%;
        height: 100%;
        opacity: .85;
    }
    100% { 
        opacity: 0;
        transform: scaleX(1.035) scaleY(1.2)
    }
}

.highlight {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    background-color: #3673fc;
    opacity: .85;
    animation: pulse 2s ease infinite;
}

.profile-texts {
    position: relative;
    padding: 25px;
    margin-top: 50px;
    background-color: transparent;
    border-radius: 7.5px;
    max-width: 1000px;
}

*, *::after, *::before {
    -webkit-user-select: none;
    -webkit-user-drag: none;
    -webkit-app-region: no-drag;
}

.fade-in-text {
  animation: fadeIn 5s;
  -webkit-animation: fadeIn 5s;
  -moz-animation: fadeIn 5s;
  -o-animation: fadeIn 5s;
  -ms-animation: fadeIn 5s;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-moz-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-webkit-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-o-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-ms-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Tooltip */

.tooltip-container {
    cursor: pointer;
    position: relative;
    display: flex;
}

.tooltip {
    opacity: 0;
    z-index: 99;
    color: #eee;
    display: flex;
    font-size: 16px;
    align-items: center;
    padding: 10px;
    justify-content: center;
    border-radius: 3px;
    text-align: center;
    width: 160px;
    font-weight: 800;
    height: 35px;
    background: rgba(51,51,51,.8);
    transition: all .2s ease-in-out;
    transform: scale(0);
    position: absolute;
    font-family: inherit;
    right: -70.6px;
    bottom: 40px;
}

.tooltip:before,.tooltip:after {
    content: '';
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(51,51,51,0.9);
    position: absolute;
    bottom: -10px;
    left: 43%;
}

.tooltip-container:hover .tooltip {
    opacity: 1;
    transform: scale(1);
}

.footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: inherit;
}

.footer a{
    font-size: 18px;
    font-weight: 800;
    color: white;
    font-family: inherit;
    text-decoration: none;
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
