/* GENERAL */
:root {
  --very-dark-green: #343826;
  --dark-green: #484D3A;
  --olive-green: #525E2C;
  --beige: #DFCEAF;
  --light-green: #D3DCB7;
  --lighter-green: #F9FFE5;
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--olive-green);
  background-image: url("assets/download.png");
  background-size: cover;
  color: var(--beige);
  font-family: 'MS PGothic', 'ms gothic', cambria;
  margin: 0 auto;
  margin-top: 20px;
  width: 100%;
  cursor: url(http://www.rw-designer.com/cursor-extern.php?id=6358);
  text-transform: lowercase;
}

h1, h2, h3 {
  font-family: 'Jacquard 24', verdana;
  font-weight: 300;
}
h1 {
  font-size: 2.55em;
}
h2 {
  font-size: 2em;
}

a {
  color: var(--light-green);
}
a:hover {
  color: var(--lighter-green);
}

#footer {
  margin: 0 auto;
  text-align: center;
}

@media only screen and (max-width: 600px) {
  body, #intro-wrapper, #main-wrapper, main, aside {
    flex-wrap: wrap;
  }
  #intro-wrapper, #main-wrapper {
    width: 70%;
  }
}

.runaround-img-left {
  float: left;
  margin-right: 10px;
}

/* Start https://www.cursors-4u.com */ * {cursor: url(https://cur.cursors-4u.net/nature/nat-7/nat622.cur), auto !important;} /* End https://www.cursors-4u.com */



/* INTRO */
#intro-wrapper {
  margin: 0 auto;
  height: 100vh;
  max-width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#intro {
  padding: 0px 10px;
  background-color: var(--olive-green);
  border-radius: 8px;
  border: 1px solid var(--beige);
}

#enter {
  font-family: 'Jacquard 24', verdana;
  text-align: center;
  font-size: 2em;
}

#funky h1 {
  text-align: center;
}
#funky p {
  font-style: italic;
}



/* HOME */
.content-item {
    padding: 0px 10px;
    background-color: var(--olive-green);
    border-radius: 8px;
    border: 1px solid var(--beige);
}

.main-wrapper {
    margin: 0 auto;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

main, aside {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 5px;
}
main {
  margin-bottom: 5px;
}

#newsline {
  margin-bottom: 5px;
  width: 100%;
}

#newsline-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

#sidebar {
  flex-grow: 1;
  width: 30%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 10px;
}

#content {
  flex-grow: 8;
  width: 70%;
  padding-bottom: 30px;
}

#navbar {
  margin: 0;
  padding: 0;
  padding-top: 10px;
  list-style-type: none;
  font-size: 1.2em;
}

#navbar li {
  padding-bottom: 15px;
}

#my-button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}

#icons {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

#webrings {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}
#updates {
  width: 30%;
  flex-grow: 1;
  max-height: 480px;
  overflow: hidden;
  position: relative;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
/* Hide scrollbar for Chrome, Safari and Opera */
#updates::-webkit-scrollbar {
  display: none;
}
#chatbox {
  flex-grow: 8;
  width: 70%;
}
#chatbox-container {
  border: 1px solid var(--dark-green);
  border-radius: 8px;
}



/* UPDATES */

#update-container {
  display: flex;
  flex-wrap: no-wrap;
  align-items: center;
  flex-direction: column;
  overflow: auto;
  height: 80%;
  width: 100%;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
/* Hide scrollbar for Chrome, Safari and Opera */
#update-container::-webkit-scrollbar {
  display: none;
}
.update-item {
  width: 90%;
  background-color: var(--dark-green);
  border: 1px solid var(--beige);
  border-radius: 8px;
  color: var(--beige);
  margin-bottom: 5px;
  padding: 0px 5px;
}


/* ABOUT */
#userbox-container img {
  max-width: 30%;
}

#userbox-container, #link-container {
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}
.link-item {
  display: inline-flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 5px;
}

.interest-table {
  margin: 0 auto;
  border: 3px solid var(--very-dark-green);
  border-radius: 10px;
  border-collapse: collapse;
  background-color: var(--dark-green);
  width: 90%;
  height: auto;
  text-align: left;
}
.interest-table td {
  border: 1px solid #948473;
  padding: 4px 4px;
  color: var(--beige);
}
.interest-table tr {
  height: 5em;
}
#interest-header {
  width: 20%;
  background-color: var(--very-dark-green);
  font-weight: bold;
}