:root {
  --white: #f6fcfc;
  --lightblue: #81c7e0;
  --mediumblue: #00b8de;
  --darkteal: #007c94;
  --ashblue: #617ca9;
  --darkblue: #003479;
  --lightteal: #00c0c3;
  --mediumteal: #10bcdf;
  --drakgreen: #017e5c;
  --lightgreen: #8ed32f;
  --yellow: #f3d100;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;
  text-align: center;
  margin: 0;
  background-color: var(--white);
  height: 1vh;
  overflow: hidden;
}

#background-image {
  position: absolute;
  top: 30%;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: -1;
}

nav {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 8vh;
  background-color: #007c94;
  z-index: 4;
}

.logo {
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 25px;
}

.logotext {
  color: white;
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

input{
  font: 12px arial;
}

a{
  color: #0000ff;
  text-decoration: none;
}

a:hover{
  text-decoration: underline;
}

li {
  list-style-type: none;
}

#wrapper, #loginform{
  margin: 3% auto 0 auto;
  background: #bcc0c0;
  width: 60vw;
  height: 75vh;
  border: 6px solid #ebebeb;
  border-radius: 6px;
}

#chatbox{
  text-align: inherit;
  margin: 2% auto;
  margin-bottom: 5px;
  padding: 10px;
  background: #fff;
  width: 460px;
  border: 1px solid #ebebeb;
  overflow: auto;
  border-radius: 5px;
  height: 55vh;
  width: 50vw;
}

.usermsg{
  width: 40vw;
  padding: 10px;
  border: none;
  background: #fff;
  resize: none;
  border-radius: 5px;
}

.button{
  background-color: #007c94;
  color:white;
  padding: 1% 1%;
  border: none;
  cursor: pointer;
  width: 9vw;
  opacity: 0.8;
  border-radius: 5px;
  transition: .5s;
}

.button:hover {
  background-color: rgb(1, 109, 109);
  color: white;
  transition: .5s;
}

.welcome {
  font-size:22px;
  color: var(--drakgreen);
  font-weight: bold;
  margin-top: 1vh;
}

@media only screen and (max-width: 600px) {
  .button {
    display: block;
    margin: 2vh auto 2vh auto;
    width: 50vw;
  }
  #wrapper, #loginform {
    height: 82vh;
  }
  .welcome {
    font-size: 16px;
  }
}

.login {
  float: left;
  background-color: rgb(3, 75, 243);
  color: white;
  padding: 10px 14px;
  border: none;
  cursor: pointer;
  width: 18%;
  margin-bottom: 10px;
  opacity: 0.8;
  border-radius: 5px;
  font-size: 10px;
  margin-right: 2px;
}

.login:hover{
  background-color: rgb(0, 127, 212);
  color: white;
}

.text-style{
  background-color: #e4e6eb;
  border-radius: 10px;
  margin-bottom: 10px;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;
}

.delButton{
  border: none;
  text-decoration: none;
  font-size: 16px;
  background-color: #e4e6eb;
  cursor: pointer;
  border-radius: 100%;
}

.delButton:hover{
  background-color: #d0d2d4;
}

#login-button {
  width: 35vw;
  height: 10vh;
  font-size: 5vh;
  padding: 0.6% 3% 0.8% 3%;
  border: none;
  background-color: var(--drakgreen);
  border-radius: 20px;
  margin-top: 15%;
}

#login{
  text-decoration: none;
  color: white;
}

/* Logout */

#logout-button {
  width: 13vh;
  margin-right: 1vw;
  height: 3vh;
  /* padding: 0.3% 3% 3% 3%; */
  border: none;
  background-color: #eb4040;
  border-radius: 10px;
  margin-top: 1.7vh;
  display: grid;
}

#logout{
  font-size: 15px;
  text-decoration: none;
  color: white;
  align-self: center;
  justify-self: center;
}

#forumNav{
  display: flex;
  justify-content: space-around;
  width: 100%;
}