#navbar_div {
    display: flex;
    justify-content: space-around;
    font-family: Helvetica;
    background: rgb(53, 51, 51);
    font-size: 15px;
    padding: 5px;
    line-height: 50px;
    margin-bottom: 40px;
}
#logo{
    width: 16%;
}
.items{
    color: white;
    padding: 5px;
}
img {
    width: 300px;
}

.items:hover {                  /* pseudoclass */
    background-color: gray;
    opacity: 0.5;
}
#current:hover{
    background-color: green;
}
#current:hover{
    background-color: green;
}
a {
    width: 20%;
    text-align: center;
    text-decoration: none;
}
#granim-canvas{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}
#intro{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 80px;
}
#third{
    display: flex;
    justify-content: center;
    margin-top: 80px;
    align-items: center;
}
#help{
    font-family: sans-serif;
    font-weight: 800;
    font-size: 75px;
    color: white;
    text-align: center;
    margin: 2px;
}
#typed_2{
    font-family: 'Courier New', Courier, monospace;
    font-size: 35px;
    font-weight: 800;
    text-align: center;
}
@media(max-width: 500px){
    #navbar_div a{
        font-size: 10px
    }
}
#logo:hover {
    animation-duration: 3s;
    animation-name: zoomout;
  
  }
  
  @keyframes zoomout {
    0% {
      transform: scale(1.0);
    }
    50%{
      transform: scale(0.9);
    }
    100%{
      transform: scale(1.0);
    }  
  }
  
/*Chat*/
*{
    margin:       0;
    padding:     0;
    font-family: sans-serif;
    box-sizing: border-box;
}
#chat{
    display: flex;
    justify-content: center;
    margin-top: 100px;
    margin-bottom: 40px;
}
.container{
width: 400px;
height: 60vh;
display: flex;
flex-direction: column;
background: -webkit-linear-gradient(left, #a445b2, #fa4299);
border-radius: 20px;
}
@media(max-width: 420px){
    .container{
        width: 90%;
    }
}
.header h1{
color: white;
padding: 15px;
}
.body{
flex: 1;
color: white;
background: -webkit-linear-gradient(left, #a445b2, #fa4299);
padding: 20px 30px;
overflow: hidden;
overflow-y: scroll;
}
#respondent{
padding: 10px;
color: white;
width: fit-content;
border-radius: 10px;
margin-bottom: 5px;
margin-left: auto;
background-color: rgb(95, 156, 67);
color: black;
word-break: break-word;
}
#user{
background-color: rgb(160, 65, 65);
padding: 10px;
color: white;
width: fit-content;
border-radius: 10px;
margin-bottom: 5px;
word-break: break-word;
}
#start{
background-color: blue;
padding: 10px;
color: white;
width: fit-content;
border-radius: 10px;
margin-bottom: 15px;
}
.start{
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}
.footer form{
display: flex;
}
form input{
flex: 1;
height: 40px;
border: none;
outline: none;
padding-left: 5px;
font-size: 16px;
border-bottom-left-radius: 10px;
}
form button{
width: 100px;
font-size: 18px;
border: none;
outline: none;
background-color: dodgerblue;
color: white;
cursor: pointer;
border-bottom-right-radius: 10px;
}
form button:hover{
   background-color: rgb(24, 117, 5);
   transition: 0.2s ease;
}