body{
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  scroll-behavior: smooth;
  background-color: #111111;
  --accent-color: #ff9d2b;
  --accent-color-dark: #b5701f;
  --accent-color-second: #ababab;
  --text-color: #eaeaea;
  --background-secondary: #343434;
  color: var(--text-color);
  accent-color: var(--accent-color);
}

html, body, #fullheight {
  min-height: 100% !important;
  height: 100%;
}

html {
  box-sizing: border-box;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid var(--accent-color);
  margin: 1em 0;
  padding: 0;
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.card:hover {
  /*box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.2), 0 9px 30px 0 rgba(0, 0, 0, 0.19);*/
  box-shadow: 0 0 30px rgba(0,0,0, 0.6);
}

.flex-container{
  display: flex;
  justify-content:center;
  align-content: center;
  align-items: center;
}

.row{
  flex-direction: row;
}

.column{
  flex-direction: column;
}

.wrap{
  flex-wrap: wrap;
}

.title{
  font-size: xx-large;
  font-weight: bold;
  text-align: center;
}

.mainColor{
  color: var(--accent-color);
}

.noSelect{
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.content{
  padding: 0 1em;
}

.button{
  background-color: var(--accent-color);
  color: #3b3b3b;
  border: none;
  padding: .8em;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
  margin-right: 1em;
  margin-bottom: 1em;
}

.fill {
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

/*Source: https://www.w3schools.com/howto/howto_css_modals.asp*/
/* width */
::-webkit-scrollbar {
  width: 12px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #343434;
  border-radius: 10px;
  border-width: 2px;
  border-style: solid;
  border-color: #111111;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #202020;
}

::-webkit-scrollbar-track{
  background: #111111;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1200; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #111111;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #d8d8d8;
  text-decoration: none;
  cursor: pointer;
}

footer img.footImg{
  overflow: hidden;
  width: 100%;
  height: 100%;
}

footer{
  color: white;
  position: sticky;
  top: 100%;
}

footer .foot{
  background-color: var(--accent-color);
  margin: 0;
  text-align: center;
  padding-bottom: 2.5em;
}

footer p{
  margin: 0;
  padding: 0;
}

@media only screen and (min-width: 35em) {
  .content{
    padding: 0 3em;
  }

  .title{
    font-size: xxx-large;
  }
}
