:root {
  color: white;
  --message-color1: rgb(35, 190, 59);
  --message-color2: rgb(153, 72, 180);
  --message-color3: rgb(92, 115, 249);
  
}

body {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  justify-content: center;
  background-color: #18181b;
  margin: 0;
  padding: 0;
}

a {
  color: #00B7FF;
}

.messageBoard {
  color: black;
  border-radius: 1rem;
  border: 1rem inset rebeccapurple;
  width: 40%;
  padding: 2rem;
  overflow-y: scroll;
  background-color: white;
};

div.message {
  display: flex;
  align-items: space-between;
  flex-wrap: nowrap;
  justify-content: stretch;
}

div.message_name {
  padding: 4px;
}

div.message_text {
  padding: 1rem;
  border-radius: .5rem;
  box-shadow: 2px 2px 6px rgba(5, 5, 5, .25);
};

.messageBoard > .message > div.message_user + div.message_text {
  display: block;
  background-color: var(--message-color1);
}

#newMessage {
  display: flex;
  flex-direction: column;
  border-radius: .5rem;
  padding: 1rem;
  justify-self: center;
  color: white;
  background-color: rebeccapurple;
  box-shadow: 2px 2px 6px rgba(0,0,0,.5)
}

#messageInput {
  width: 30vw;
  height: 10vh;
  vertical-align: top;
}

input {
  margin: .25rem;
}


legend {
  padding: .75rem;
  background-color: black;
  border-radius: 50%;
}

.portfolio {
  display: flex;
  flex-direction: column;
  height: 80vh;
  width: 100vw;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  background-color: #020617;
  border-radius: .25rem;
  color: white;
  padding: 2rem;
}

.project {
  display: flex;
  padding: 2px;  
  border: 1px solid white;
  border-radius: .25rem;
  height: 150px;
  width: 150px;
  margin: .25rem;
}

.project-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: .25rem;
  padding: .25rem;
  background-color: rgba(126, 20, 171, 1);
  color: rgb(218, 208, 208);
  box-shadow: 2px 2px 6px rgba(0,0,0,.4);
  height: auto;
  width: 100%;
  text-align: center;
}

.project-content:hover {
  opacity: .9;
}

h3,
h4 {
  padding: 0;
  margin: auto;
}

img {
  width: 96px;
  height: 96px;
}

.projectBoard {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: .5rem;
  width: 75%;
}

