html {
  min-height: 100%;
}
a {
  color: black;
}
a img {
  border: 0 none;
}
.image-link span {  
  text-decoration: underline;
}
body {
  /* background-color: rgb(141, 170, 102); */
  /* background-color: rgb(86, 142, 47); */
  height: 100%;
  font-family: "Arial,Helvetica,freesans,sans-serif";
}

.bs-example {
  /* margin: 20px; */
  height: 100%;
}

.social-icons li {
    display:inline;
    padding: 10px 10px;
}

.navbar-nav {
  padding-left: 150px;
}

.navbar-brand img {
  border:0;
}


/** TIPS: 
1. The carousel shouldn't be in any other div, like for example div with class container. 
2. You can align image position in classes bg1, bg2, bg3 using css background-position.
*/

.center-div {
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 550px;
  height: 400px;
  background-color:#212529;
  border-radius: 3px;
}

.btn-social
{
    border-radius: 50%;
    color: #ffffff !important;
    display: inline-block;
    height: 54px;
    line-height: 54px;
    /* margin: 8px 4px; */
    text-align: center;
    text-decoration: none;
    transition: background-color .3s;
    webkit-transition: background-color .3s;
    width: 54px;
}

.btn-social:hover .fa,.btn-social:focus .fa,.btn-social:hover i,.btn-social:focus i
{
    ms-transform: scale(1.3);
    o-transform: scale(1.3);
    transform: scale(1.3);
    webkit-transform: scale(1.3);
}
.btn-primary {
  background-color: transparent;
  border-color: white;
}
.btn-primary:hover {
  background-color: black;
  border-color: yellow;
  
}

.body-card {
  margin-top: 20px;
  padding-left: 50%;
  padding-right: 10%;
  /* background-color: #343a40!important; */
  /* color: white; */
}

.welcome-card {
  margin-top: 20px;
  /* text-align: center; */
  padding-left: 50%;
  padding-right: 10% ; 
  /* display: inline; */
  /* background-color: #343a40!important; */
  /* color: white; */
}




table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
  background-color: transparent;
  font-family: 'Calibri'
}

.merchcard {
  margin: 20px;
}

.card-merch {
    display: flex;
    /* justify-content: center; */
    margin-top: 100px;
}

.card-body {
border-left: 5px solid rgb(234, 234, 234);
}

.footer{
  position: absolute;
 
}
.floatRight {
  float: right;
  padding-left: 250px;
}

h2 {
  margin-bottom: 0;
}

.ll {
  margin-left: 0;
}
.img {
  width: 100%;
  height: auto;
}
.imgalign {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: auto;
}
/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #45a049;
}

/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}
ul {
  text-align: center;
  list-style-position: inside;
}
ol {
  text-align: center;
  list-style-position: inside;
}
.row {
  background-color: #6b6666;
}
p {
  white-space: nowrap;
  line-height: 2.0;
}
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
section {
  height: 100vh;
  width: 100%;
  background-color: aliceblue;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.form-group {
  width: 100%;
  margin-top: 20px;
  font-size: 20px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 5px;
  font-size: 18px;
  border: 1px solid rgba(128, 128, 128, 0.199);
  margin-top: 5px;
}
textarea {
  resize: vertical;
}
button[type="submit"]{
  width: 100%;
  border: none;
  outline: none;
  padding: 20px;
  font-size: 24px;
  border-radius: 8px;
  color: rgb(27, 166, 247);
  text-align: center;
  cursor: pointer;
  margin-top: 10px;
  transition:  .3s ease background-color;
}
button[type="submit"]:hover{
  background-color: rgb(214, 226, 236);
