h1{
  font-size: 50px;
}

body{
  background-image: url("flames.jpeg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;	
  background-size: cover;	
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 20px;
}

#head{
  text-align: center;
  font-size: 32px;
  color: red;
  border-bottom: 2px solid yellow;
  width: 100%;
  text-shadow: 0px 0px 8px yellow;	
}

#enter{
  width: 0px;
  height: 0px;
  visibility: hidden;	
}

#enterBtn{
  width: 20%;	
  height: 50px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: midnightblue;
  color: yellow;
  font-size: 38px;
}

#messages{
  width: 98%;
  max-width: 1000px;	
  height: 70vh;
  background-color: transparent;
  border: none;
  backdrop-filter: none;
  border-radius: 0px;
  overflow: scroll;
}

#foot{
  background-color: midnightblue;
  padding: 0px;
  width: 100%;
  height: 70px;
  position: fixed;
  bottom: 0px;
  right: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  column-gap: 15px;
  border-top: 1px solid yellow;
}

#msg{
  width: 70%;
  height: 30px;
  font-size: 20px;
  border: 3px solid yellow;
  border-radius: 30px;
}

#send{
  width: 40px;
  height: 40px;
  border: 1px solid yellow;
  border-radius: 50%;
  font-size: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: yellow;
}

#sendMsg{
  width: 100%;	
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  column-gap: 15px;
  margin-top: 13px;	
}

#LoginForm{
  background-image: url("flames.jpeg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;	
  background-size: cover;
  height: 100%;
  width: 100%;

  transition: 1s linear;
  position: fixed;
  top: 0px;
  left: 0px;
  
	
	
  display: flex;
	
  justify-content: center;
  align-items: center;
}

#login{
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);	
  width: 85%;
  max-width: 700px;
  margin: auto;	
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 380px;
  color: yellow;
  text-align: center;
  padding: 15px;
  border-radius: 30px;
  
}

#login input{
  width: 90%;
  height: 37px;
  font-size: 28px;
  text-align: center;
  border: 3px solid yellow;
  border-radius: 30px;
  transition: .6s;	
}

#login input:focus{
  height: 38px;	
  font-size: 30px;
  transition: .6s;	
}	
	
#loginBtn{
  width: 60%;
  height: 45px;
  background-color: midnightblue;
  color: yellow;
  font-size: 30px;
  border: 3px solid yellow;
  border-radius: 30px;
}