body {
  background: #f9f9f9;
  font-family: "Roboto", sans-serif;
  background-image: url("images/color.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100% 100%;
  max-width: auto;
}
#header {
  padding: 10px 0;
  background:  grey;
}
#header .column {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .hd-logo {
  max-width: 130px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}
#header .nav-header ul {
  margin: 0 auto;
  padding: 0;
  list-style-type: none;
}
#header .nav-header ul li {
  display: inline-block;
  margin: 0 20px;
  font-family: Oswald;
  font-size: 25px;
}
#header .nav-header ul a {
  color: black;
  text-decoration: none;
  transition: all 0.2s linear;
}
#header .nav-header ul a:hover {
  color: #9f782d;
}
#header .header-right {
  text-align: right;
}
#header .header-right input {
  min-width: 400px;
  margin-bottom: 0;
}
#header .header-right {
  margin-bottom: 10px;
}
#header .header-right i {
  margin-right: 5px;
}
#header .header-right ul {
  margin: 0 auto;
  padding: 0;
  list-style-type: none;
}
#header .header-right ul li {
  display: inline-block;
  margin: 0 20px;
  font-family: "Oswald";
  font-size: 25px;
}
#header .header-right ul a {
  color: black;
  text-decoration: none;
  transition: all 0.2s linear;
}
#header .header-right ul a:hover {
  color: #9f782d;
}
h4{
  color: white;
}
.card {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  width: 20%;
  display: inline-block;
  margin: 25px;
}

.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.container {
  padding: 2px 16px;
}
.checked {
  color: orange;
}
.word{
  color: white;
  width: 250px;
  height: 100px;
  overflow: auto;
}
.word::-webkit-scrollbar{
  display: none;
}
.btn, .btn-grey {
  display: inline-block;
  background: skyblue;
  color: black;
  border-radius: 40px;
  min-width: 160px;
  text-align: center;
  padding: 15px;
  transition: all 0.2s ease;
}
.btn:hover, .btn-grey:hover {
  background: lightseagreen;
}
.btn2, .btn-grey {
  display: inline-block;
  background: darkgrey;
  border-radius: 40px;
  color: white;
  min-width: 100px;
  text-align: center;
  padding: 10px;
}
.search input[type=text]{
  width:300px;
  height:35px;
  border-radius:25px;
  border: none;
}
.search{
  float:right;
  margin:7px;
}
.btns{
  margin-top: 20px;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.btns button{
  background: #8e44ad;
  width: 100%;
  padding: 9px 0px;
  outline: none;
  border: 2px solid #8e44ad;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  color: #8e44ad;
  transition: all 0.3s linear;
}
.btns button:first-child{
  background: none;
  margin-right: 5px;
}
.btns button:last-child{
  color: #fff;
  margin-left: 5px;
}
.btns button:first-child:hover{
  background: #8e44ad;
  color: #fff;
}
.btns button:hover{
  color: #fff;
}
@media (max-width:1045px){
  .container .box{
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }
}
@media (max-width:710px){
  .container .box{
    width: 100%;
  }
}