/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  background-image: url("image/background.png");
  color: black;
  font-family: Arial;
  padding: 5px;
}


/* PAGE FORMATTING */

.title {
	margin: auto;
	text-align: center;
	border: 1px rgb(239,73,61);
	border-style: hidden hidden solid hidden;
	padding: 10px 10px 0px 10px;
}

.header {
	display: flex;
	justify-content: space-between;
	margin: auto;
	text-align: center;
	padding: 5px;
}

.body {
  border: 2px rgb(0,0,0) dashed;
  background-color: rgb(255,255,255);
  padding: 5px;
  margin: auto;
  border-radius:10px;
}

.main {
  max-width: 900px;
  width: 90%;
  margin: auto;
}

/* POPUP BULLSHIT? */

/* Popup container */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* The actual popup (appears on top) */
.popup .popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #00000;
  color: #FFFFFF;
  text-align: center;
  border-radius: 3px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
  visibility: visible;
}


/*PAGE CONTENT FORMATTING*/

.avatar {
  max-width: 90%;
  width: auto;
  height: auto;
  padding: 5px;
  margin: auto;
}

table{
  border-collapse: collapse;
  border-style: hidden;
}

table tr:nth-child(odd) td{
   background-color: rgb(255,255,255);
}

table tr:nth-child(even) td{
   background-color: rgb(220,220,220);
}

h1, h2, h3, i, b {
  color:rgb(239,73,61);
}

h1, h2, h3, p {
  padding: 5px;
  margin: 1px;
}


a:link {
  color: rgb(239,73,61);
  text-decoration: underline;
}

a:hover, a:hover .h3 {
  color: rgb(255, 255, 255);
  background-color: rgb(239,73,61);
  text-decoration: underline;
}