a{
    text-decoration:none; /*Removes underline from the link*/
}

body.no_scroll {
    overflow: hidden;
}

button {
    background-color:#ABABAB;
    border: 1px solid #838383;
    border-radius: 8px;
}

button:hover {
    background-color: #838383;
}

fieldset{
    background-color:#d9d9d9;
    border: 1px ridge black;
    border-radius: 10px;
    padding: 20px 20px 20px 20px;
    display: inline-block;
}

fieldset label, fieldset p, fieldset H2{
    color: #212121;
}

h1 {
    color: #FFFFFF;
    font-size: 70px;
}

h2 {
    color: #FFFFFF;
    font-size: 23px;
}

h3 {
    color: #FFFFFF;
    font-size: 18px;
}

h5 {
    color: #FFFFFF;
}

input, textarea, legend, select{
    background-color: white;
    border-radius: 5px;
    border: 1px solid black;
}

label{
    color: #838383;
}

li{
    color: #838383;
}

li a, h3 a{
    color: #616161;
}

li a:hover, h3 a:hover{
    color: #424242;
}

p {
    color: #838383;
    font-size: 15px;
}

textarea{
    height: 150px;
    width: 300px;
    vertical-align: text-top; /*aligns labels to top of text box*/
}

.button{
  display: inline-block;
  background-color: #d9d9d9;
  padding: 10px;
  width: 100px;
  color: #222222;
  text-align: center;
  border-radius: 40px;
  font-size: 15px;
  text-decoration:none; /*Removes underline from the link*/
}
.button:hover {
  background-color: #ABABAB;
}

.centered_text{
	text-align:center;
}

.textbox{
    width: 300px;
    height: 150px;
    text-align: left;
    vertical-align: text-top; /*aligns labels to top of text box*/
}

.smalltextbox{
    width: 300px;
    height: 30px;
    text-align: left;
    vertical-align: text-top; /*aligns labels to top of text box*/
}

/* For Media Buttons on home page */

.mediaButton {
    display: inline-block;
    background-color: #d9d9d9;
    padding: 10px;
    color: #222222;
    border-radius: 40px;
}
.mediaButton:hover {
    background-color: #ABABAB;
}
.socialMedia {
    height: 20px;
    width: 20px
}

/* Bootstrap Elements*/
/* Background Colours */
.bg-primary{
    background-color: #212121 !important;
}

.bg-secondary{
    background-color: #191919 !important;
}

/* Navbar Elements */
a.nav-link {
    color: #838383;
}
a.nav-link:hover {
    color: #d9d9d9;
}
a.nav-link.active{
    font-weight: bold;
    color: #838383 !important;
}
a.nav-link.active:hover {
    color: #d9d9d9 !important;
}

.navbar-brand{
    font-weight: bold;
    color: #838383;
}

.navbar-brand:focus{
    color: #838383 !important;
}
.navbar-brand:hover{
    color: #d9d9d9 !important;
}
.navbar-brand:active{
    color: #d9d9d9 !important;
}

/*When navbar dropdown is selected*/
.dropdown-toggle.show{
    color: #d9d9d9 !important;
}
.dropdown-toggle:focus{
    color: #d9d9d9 !important;
}

.dropdown-menu li a:hover {
    color: #000000 !important;
}
.dropdown-menu li a:active {
    background-color: #838383 !important;
}