* {
    font-family: "Signika";
}
body, #chatPage {
    display: flex;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    align-items: center;
    flex-direction: column;
    background-color: #2b2b2b;
    overflow: auto;
}

.appLogo {
    width: 50px;
    margin: 0 30px;
}

.menuBar {
    width: 100%;
    height: 50px;
    background-color: #5f5f5f;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}

.navBar {
    display: flex;
    align-items: center;
    justify-content: right;
}

.nav-items {
    text-decoration: none;
    color: #7bef7b;
    margin-right: 40px;
    overflow: hidden;
    display: inline-block;
    position: relative;
  }
    
.nav-items::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #7bef7b;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

  .nav-items:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }

.mainCont {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    color: #a3eda3;
}

.mainCont h1 {
    font-size: 60px;
    margin: 0;
}

.mainCont h3 {
    font-size: 30px;
}

#entryPoint {
    text-decoration: none;
    color: #000;
    background-color: #5f5f5f;
    padding: 15px 20px;
    border: #2b2b2b solid 1px;
    position: relative;
    box-shadow: 5px 5px 5px #000;
}

#entryPoint:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    transition: all 200ms ease-in-out;
    width: 0;
    background: linear-gradient(
        to right,
        transparent,
        rgba(123,239,123,0.5),
        rgba(163,237,163,0.7)
    );
}

#entryPoint:hover::before {
    transition: width 400ms ease-in-out;
    width: 100%;
}

#entryPoint:hover {
    transition: all 200ms ease-in-out;
    border: #a3eda3 solid 1px;
    color: #b8ffb8;
    box-shadow: 0 0 20px #a3eda3;
}

