@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap");

html,
body {
  height: 100%;
  margin: 0;
}
body {
  display: flex;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 300;
  background-color: #808080;
  color: black;
}

.container {
  display: flex;
  flex-direction: column;
}

nav {
  display: flex;
  background-color: #653366;
  border-top: 2px outset #07366c;
  border-bottom: 2px outset #07366c;
  height: 100%;
  justify-content: flex-start;
}

.subheader {
  padding: 0.7em 0 0.4em 0;
  align-self: stretch;
  display: flex;
  border-right: 2px outset #07366c;
}

.subheader.blue {
  background-color: #1e669b;
}
.subheader.green {
  background-color: #2a6865;
}

.subheader.purple {
  background-color: #66669c;
}

nav a {
  color: white;
  padding: 0 1.5rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  text-align: center;
}

nav a svg {
  fill: white;
  height: 2em;
  width: 2em;
  margin: auto;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

section {
  background: #fefcf0;
  border: 2px outset #5c5c5c;
  margin: 1rem;
}

h2 {
  margin: 0;
  padding: 0.25em;
  border-bottom: 2px groove #5c5c5c;
  background: linear-gradient(45deg, #88868c, #e5e5e2);
  color: white;
  font-size: 1em;
}

h2.active {
  background: linear-gradient(45deg, #0060a3, #9abce0);
}

.reply-content,
.chat-content {
  background-color: white;
  border: 1px inset #4d4d4d;
  padding: 0.5rem;
  margin: 0.5rem;
  display: flex;
  flex-direction: column;
  min-width: 5rem;
  align-items: flex-start;
}
.reply-content {
  min-height: 3rem;
}

.chat-content {
  min-height: 5rem;
}

.chat-message {
  margin-bottom: 0.25rem;
  padding-right: 1.5rem;
}

.chat-message strong {
  color: blue;
  margin-right: 0.25rem;
}

.fake-buttons {
  display: flex;
}

.fake-buttons div {
  margin: 0.5rem;
  padding: 0.25rem;
  border: 1px solid black;
  color: white;
  background-color: #1f6696;
}

.link-content,
.icon-content {
  display: flex;
}
.main-content {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
}

.side-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  text-align: center;
  color: #033061;
  font-size: 0.8em;
}
.side-content h3 {
  font-size: initial;
  margin: 0;
}

.side-content .link-here {
  width: 88px;
  height: 31px;
  margin: auto;
  margin-top: 1rem;
}

.side-content .logo {
  width: 7rem;
}

.links {
  display: grid;
  grid-template-columns: repeat(2, 50%);
}

.links a {
  color: #4d4d4d;
  width: 10rem;
  height: 1rem;

  background: rgb(91, 240, 0);
  background: radial-gradient(
    circle,
    rgba(91, 240, 0, 1) 3%,
    rgba(0, 240, 169, 1) 59%
  );
  padding: 0.5rem;
  margin: 0.5rem;
  text-decoration: none;
  border: 2px outset #4d4d4d;
  color: black;
}

.links a.private {
  background: rgb(131, 58, 180);
  background: linear-gradient(
    90deg,
    rgba(131, 58, 180, 1) 0%,
    rgba(253, 29, 29, 1) 50%,
    rgba(252, 176, 69, 1) 100%
  );
  color: white;
  margin-top: 0.5em;
}

.links a.private::after {
  content: "🔒";
}

.links a:hover {
  background: rgba(91, 240, 0, 1);
  box-shadow: 5px 5px 15px rgba(91, 240, 0, 1),
    -5px -5px 15px rgba(0, 240, 169, 1);
  color: white;
}

.links a.private:hover {
  background: rgba(252, 176, 69, 1);
  box-shadow: 5px 5px 15px rgba(253, 29, 29, 1),
    -5px -5px 15px rgba(131, 58, 180, 1);
  color: black;
}

@media only screen and (min-width: 768px) {
  #discord {
    position: fixed;
    bottom: 200px;
    left: 150px;
    width: 400px;
  }

  #links {
    position: fixed;
    bottom: 400px;
    left: 600px;
  }
}
