/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

/*reset stylesheet over*/
/*rest of defaults for mobile first, with @media updates for tablet and desktop*/
:root {
  --theme-color: #cc5500;
  --accent-color: #800000;
  --text-color: black;
}

* {
  font-family: 'Newsreader', serif;
}

::selection {
  background-color: var(--accent-color);
  color: white;
}

html {
  height: 100%
}

body {
  background-color: #fff0e0;
  min-height: 100%;
}

#loginlink {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 10px;
}

.youtubeIcon {
  width: 30px;
  position: absolute;
  right: 50px;
  /*30 more than discord's 10, plus another 10 spacing*/
}

.discordIcon {
  width: 30px;
  position: absolute;
  right: 10px;
}

table, th, td {
  border-collapse: collapse;
  border: 1px solid black;
}
table {
  width: 100%;
}
th {
  background-color: var(--accent-color);
  color: white;
  text-align: center;
}
th, td {
  padding: 10px;
}
tr:nth-child(even) {
  /*light burnt orange*/
  background-color: #ffc49a;;
  color: var(--text-color);
}

form p {
  margin-bottom: 0;
  line-height: 0;
}

a {
  color: var(--theme-color);
}

a:hover {
  color: var(--accent-color);
}

form button{
  margin-left: 10px;
  font-size: 16px;
  color: white;
  background-color: var(--accent-color);
  border: none;
  margin-top: 5px;
  margin-bottom: 5px;
}

form button:disabled{
  background-color: #cc9999;
  color: black;
}

input {
  /*each input element in form takes whole width*/
  width: 100%;
  margin-left: 10px;
  margin-bottom: 3px;
  margin-top: -3px;
  padding: 5px 2px;
}

select {
  margin-left: 10px;
  margin-bottom: 3px;
}

.radio {
  width: auto;
}

textarea {
  resize: vertical;
  max-height: 300px;
  width: 100%;
  margin-left: 10px;
  margin-bottom: 5px;
  padding: 5px 2px;
}

input, textarea {
  border: 1px solid var(--accent-color);
  outline: none;
}

input:focus, textarea:focus {
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.5);
}

/*style everything with placeholder attr*/
::placeholder {
  color: var(--accent-color);
  /*for Firefox*/
  opacity: 0.5;
  font-size: 16;
}

/*for IE*/
:-ms-input-placeholder {
  color: rgba(204, 85, 0, 0.5);
}

/*for Edge*/
::-ms-input-placeholder {
  color: rgba(204, 85, 0, 0.5);
}

.topnav {
  text-align: center;
}

.topnav #myLinks {
  /*default don't show menu options in mobile*/
  display: none;
  background-color: white;
}

.topnav a {
  text-decoration: none;
  color: var(--accent-color);
  display: block;
  padding: 14px 16px;
  font-size: 20px;
}

.topnav a.menu {
  font-weight: 700;
  background-color: var(--theme-color);
  color: white;
}

/*of course on actual mobile there is no hovering*/
.topnav a:hover {
  color: var(--text-color);
}

.wrapper {
  /*centers contents 0px top and bottom, autio (center) left and right*/
  margin: 0 auto;
  /*width: 1000px; originally; change to 70% of screen for responsive design*/
  width: 80%;
}

.text-center {
  text-align: center;
}

.bell {
  width: 300px;
  margin: 0 auto;
  /*apparently display: block; is needed to allow centering*/
  display: block;
}

video {
  /*100% = width of wrapper it's in*/
  /*not used since now embedding YT videos*/
  width: 100%;
}

.videoWrapper {
  /*dimensions are 16:9*/
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0px;
}

.videoWrapper iframe {
  /*fill up .videoWrapper*/
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  height: 100%;
  width: 100%;
}

nav {
  display: none;
}

ul {
}

ul li {
  /*no bullet*/
  list-style: none;
  /*horizontal*/
  display: inline-block;
  /*no spacing between*/
  float: left;
  /*same as nav height to vertically center text*/
  line-height: 60px;
}

ul li a {
  /*allows clicking above or below text*/
  display: block;
  /*no underline*/
  text-decoration: none;
  font-size: 20px;
  color: white;
  /*no vertical padding (already centered) but horizontal*/
  padding: 0 20px;
}

ul li a:hover {
  color: var(--text-color);
}

h1 {
  font-size: 40px;
  text-align: center;
  color: var(--accent-color);
  font-weight: 700;
  margin: 10px;

}
h2 {
  color: var(--theme-color);
  font-size: 30px;
  margin: 10px;
  text-align: center;
  font-weight: 400;
}
p {
  font-size: 16px;
  color: var(--text-color);
  margin: 10px;
  font-weight: 400;
  text-indent: 0px;
  line-height: 25px;
  text-align: left;
}

ol li{
  font-size: 16px;
  color: var(--text-color);
  margin: 30px;
  font-weight: 400;
  text-indent: 0px;
  line-height: 25px;
  text-align: left;
}

/*iPad is 768px wide*/
@media only screen and (min-width: 768px) {
  /*same width as mobile but just here for reference*/
  .wrapper {
    width: 75%;
  }

  .topnav {
    display: none;
  }

  nav {
    display: block;
    width: 100%;
    height: 60px;
    background-color: var(--theme-color);
  }

  h1 {
    font-size: 60px;
    margin: 20px;
  }

  h2 {
    font-size: 40px;
    margin: 20px;
  }

  p {
    font-size: 22px;
    line-height: 35px;
    margin: 20px;
  }

  form button {
    margin-left: 20px;
    font-size: 22px;
  }

  input {
    margin-left: 20px;
  }

  select {
    margin-left: 20px;
  }

  textarea {
    margin-left: 20px;
  }

  ::placeholder {
    font-size: 22px;
  }

  ol li{
    font-size: 22px;
    line-height: 35px;
    margin: 50px;
  }
}

/*1000px or higher is good for considering as desktop*/
@media only screen and (min-width: 1000px) {
  .wrapper {
    width: 60%;
  }
}
