/******************************************
/* SETUP
/*******************************************/

/* Box Model Hack */
* {
  -moz-box-sizing: border-box; /* Firexfox */
  -webkit-box-sizing: border-box; /* Safari/Chrome/iOS/Android */
  box-sizing: border-box; /* IE */
}

/* Clear fix hack */
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clear {
  clear: both;
}

.alignright {
  float: right;
  padding: 0 0 10px 10px; /* note the padding around a right floated image */
}

.alignleft {
  float: left;
  padding: 0 10px 10px 0; /* note the padding around a left floated image */
}

/******************************************
/* BASE STYLES
/*******************************************/

body {
  color: #000;
  font-size: 12px;
  line-height: 1.4;
  font-family: Helvetica, Arial, sans-serif;
}

/******************************************
/* LAYOUT
/*******************************************/

/* Center the container */
#container {
  width: 960px;
  margin: auto;
}

/******************************************
/* ADDITIONAL STYLES
/*******************************************/
#textInput,
#button,
#submitBtn {
  vertical-align: middle;
}

#bg-body {
  background-color: rgb(73, 136, 218);
}

#textInput {
  width: 250px !important;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s;
}

#button {
  width: 100px !important;
}

#submitBtn {
  width: 100px !important;
}

i {
  color: #dc3545;
}

#list-font {
  font-family: sans-serif;
  font-weight: bold;
  font-size: 29px;
  color: white;
}

#head-font {
  color: white;
}

@media only screen and (max-width: 767px) {
  #textInput {
    width: 600px !important;
  }

  #head-font {
    font-size: 35px;
  }
}

@media only screen and (max-width: 480px) {
  #head-font {
    font-size: 30px;
  }
}
