#pwait {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: whitesmoke;
    opacity: 0.95;
    z-index: 9;
    display: none;
}
#pwait span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #666;
}
#flexCon {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 60%;
    margin: auto;
    gap: 2em;
}
#mblgCon {
    display: none;
    flex: 1 0 100%;
}
#mblgCon img {
    display: block;
    margin: auto;
}
#logoCon {
    flex: 0 1 10%;
}
#mainLogo {
    margin: auto;
}
#textCon {
    flex: 1 0 20%;
}
#textCon span {
    display: block;
    margin-bottom: 0.5em;
}
#textCon span:first-child {
    font-size: 1.5rem;
    font-weight: bold;
}
#textCon span:nth-child(2) {
    font-size: 1.25rem;
    font-weight: 600;
}
#textCon span:nth-child(3) {
    font-size: 1rem;
    font-weight: 600;
}
#textCon span:nth-child(4) {
    font-size: 1rem;
    font-weight: 500;
}
#textCon a {
    display: inline-block;
    background-color: slateblue;
    color: white;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid white;
    border-radius: 5px;
    box-shadow: 3px 3px 1px #222;
    padding: 10px;
    margin-right: 1em;
    margin-top: 1em;
    cursor: pointer;
}
#textCon a:hover {
    background-color: lightgray;
    color: black;
    transition: 0.3s ease-in-out;
}
#textCon button a:hover {
    color: black;
}
#flexCon hr {
    display: none;
    flex: 0 0 100%;
    border: unset;
    border-top: 2px solid lightgray;
}
#empCon {
    flex: 1 0 100%;
}
#empCon > a {
    display: inline-block;
    text-decoration: none;
    border: 1px solid whitesmoke;
    border-radius: 6px;
    color: white;
    background-color: darkslateblue;
    padding: 0.5em 1em;
    box-shadow: 3px 3px 1px gray;
}
#empCon > a:hover {
    background-color: lightgray;
    color: black;
}
#empCon p {
    font-size: 1em;
}
@media screen and (max-width: 899px) {
    #mblgCon {
        display: block;
    }
    #logoCon {
        display: none;
    }
    #flexCon {
        width: 100%;
    }
    #textCon span:first-child,
    #textCon span:nth-child(2) {
        text-align: center;
    }
    #flexCon hr {
        display: block;
    }
}