 /* HTML5 display-role reset for older browsers */
 article, aside, details, figcaption, figure, 
 footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  background: radial-gradient(circle, #ADD8E6, white);
  font-family: sans-serif;
}

h1 {
    font-family: sans-serif;
    font-size: 45px;
}

input {
  background: transparent;
}


#formbox {
  border: solid;
  border-color: black;
}

#Message {
  height: 200px;
  width: 600px;
  border: solid;
  border-color: black;
  background: transparent;

}
.container {
  width: 989px;
  margin: 0 auto;
}

.footer {
  position: auto;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-style: italic;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.scrolling-wrapper {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  
  .card {
    display: inline-block;
  }
}

.scrolling-wrapper-flexbox {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  
  .card {
    flex: 0 0 auto;
    margin-right: 3px;
  }
}

.card {
  border: 2px solid $red;
  width: auto;
  height: auto;
  background: transparent;
  padding: 8px;
}

.scrolling-wrapper, .scrolling-wrapper-flexbox {
  height: 200px;
  margin-bottom: 100px;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  &::-webkit-scrollbar {
    display: none;
  }
}

/*
Defines Information around DropDown Menu works
W3schools.com. (n.d.). How TO - Clickable Dropdown. Retrieved April 13, 2019, from https://www.w3schools.com/howto/howto_js_dropdown.asp
Start
*/
.dropbtn {
  font-family: sans-serif;
  font-weight: bold;
  background-color: transparent;
  color: black;
  font-size: 20px;
  border: none;
  cursor: pointer;
  color: #ff0000;
  text-decoration: underline;
}

.dropbtn:hover, .dropbtn:focus {
  background-color: #ADD8E6;
}

#myInput {
  border-box: box-sizing;
  background-color: white;
  background-position: 14px 12px;
  background-repeat: no-repeat;
  font-size: 16px;
  padding: 14px 20px 12px 45px;
  border: none;
  border-bottom: 1px solid #ddd;
}

#myInput:focus {outline: 3px solid #ddd;}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  font-family: sans-serif;
  position: absolute;
  background-color: #ADD8E6;
  min-width: 230px;
  overflow: auto;
  border: 1px solid #ddd;
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {background-color: white;}

.show {display: block;}
/*End*/