* {
    color: rgba(64, 64, 64, 1);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    margin: 0;
    padding: 0;
    user-select: none;
}

body {
    overflow: hidden;
}

h1 {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

h2 {
    font-size: 14px;
    font-weight: 400;
    opacity: 75%;
}

h1 span {
    width: 18px;
    height: 18px;
    margin-left: 2px;
    display: flex;
    align-items: center;
}

h1 span svg {
    fill: rgba(29, 161, 242, 1);
    width: 16px;
    height: 16px;
}

.main {
    display: flex;
    width: 100vw;
    height: 100vh;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 1);
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e3e3e3;
    /* animation-name: bounce; */
    /* animation-timing-function: ease; */
    /* animation-duration: 200ms; */
    /* animation-iteration-count: infinite; */
}

.photo img {
    width: 42px;
    /* border: 1px solid #e5e5e5; */
    border-radius: 50%;
}

.card.fade .photo img {
    opacity: 0;
    animation: fadeIn 200ms ease-in both;
}

.info {
    margin-left: 0.5rem;
    flex: none;
}

.card.fade .info {
    opacity: 0;
    animation: fadeIn 200ms ease-in both;
    animation-delay: 100ms;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate3d(0, -40%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

input {
    height: 10px;
    width: 50px;
    background: red;
}

#overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#overlayCard {
    position: fixed;
}

/* @keyframes bounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(0);
    }
} */