@font-face {
    font-family: MuktaMahee;
    src: url("MuktaMahee-SemiBold.ttf");
}

html,
body {
    position: relative;
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden
}

h1,
h2 {
    font-family: MuktaMahee;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
}

h1 {
    font-size: 5em;
    color: #5c5c5c;
}

h2 {
    font-size: 4em;
    color: #b4b4b4;
}

.employee {
    display: flex;
    width: 500px;
    flex-basis: 0;
    flex-grow: 1;
    align-self: center;
}

#employeePicture {
    width: 100%;
    border-radius: 50%;
}

.background {
    background-color: white;
}

.text-center {
    justify-content: center;
    text-align: center;
}

.flex-row {
    display: flex;
    flex-basis: 0;
    flex-grow: 1;
    flex-direction: row;
}

.flex-column {
    display: flex;
    flex-basis: 0;
    flex-grow: 1;
    flex-direction: column;
}

.flex-grow {
    flex-grow: 1;
}

.container {
    visibility: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: -10;
    width: 1000px;

}

.header {
    justify-content: space-between;
}


.info-icon {
    display: flex;
    position: relative;
    z-index: 2;
}

.logo {
    color: white;
    padding: 0;
}

.pulse {
    height: 100px;
    width: 100px;
    position: absolute;
    align-items: center;
    background: linear-gradient(#81cff9,
            #343468);
    border-radius: 50%;
    display: grid;
    color: #ffffff;
}

.pulse:before,
.pulse:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #81cff9;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
}

.pulse:before {
    animation: pulse 2s ease-out infinite;
}

.pulse:after {
    animation: pulse 2s 1s ease-out infinite;
}

@keyframes pulse {
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.max-height {
    height: 100%;
}

.space-around {
    justify-content: space-around;
}

/* CSS for the custom scanning screen */

#scanning {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: transparent;
    z-index: 2;
}

@media (min-aspect-ratio: 1/1) {
    #scanning .inner {
        width: 50vh;
        height: 50vh;
    }
}

@media (max-aspect-ratio: 1/1) {
    #scanning .inner {
        width: 80vw;
        height: 80vw;
    }
}

#scanning .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

    background:
        linear-gradient(to right, white 10px, transparent 10px) 0 0,
        linear-gradient(to right, white 10px, transparent 10px) 0 100%,
        linear-gradient(to left, white 10px, transparent 10px) 100% 0,
        linear-gradient(to left, white 10px, transparent 10px) 100% 100%,
        linear-gradient(to bottom, white 10px, transparent 10px) 0 0,
        linear-gradient(to bottom, white 10px, transparent 10px) 100% 0,
        linear-gradient(to top, white 10px, transparent 10px) 0 100%,
        linear-gradient(to top, white 10px, transparent 10px) 100% 100%;
    background-repeat: no-repeat;
    background-size: 40px 40px;
}

#scanning.hidden {
    display: none;
}

#scanning img {
    opacity: 0.6;
    width: 90%;
    align-self: center;
}

#scanning .scanText {
    font-size: 2em;
    padding: 5px;
    margin-bottom: 50px;
    background-color: #ffffff;
}

#scanning .inner .scanline {
    position: absolute;
    width: 100%;
    height: 10px;
    background: white;
    animation: move 2s linear infinite;
}


@keyframes move {

    0%,
    100% {
        top: 0%
    }

    50% {
        top: calc(100% - 10px)
    }
}