/* Write your CSS code in this file */
body {
  font-family: 'Rubik', sans-serif;
  letter-spacing: 2px;
  margin: 100px;
  color: white;
}

html{
  background: url(https://i.pinimg.com/originals/b6/b0/97/b6b09701c4678b09cef355bbc4892193.jpg);
}
h1 {
  font-family: 'Covered By Your Grace', cursive;
  font-size: 60px;
}

h3 {
  font-size: 25px;
  padding-top: 10px;
}

#app{
  position:absolute;
  background-color: #FFB344;
  padding: 100px 0 100px 0;
  border-radius: 5%;
}

.center {
  text-align: center;
}

ul {
  list-style: none;
  padding: 0;
}

.center::placeholder{
  color: #C8C6C6;
  font-weight: 100;
}

/*****************BUTTONS AND INPUT*************/
a:hover {
  text-decoration: none;
  color: #C8C6C6;
}

.btn:hover {
  border: none;
  background-color: #E05D5D;
  color: #4c5b56;
}

.guess {
  background-color: #00A19D;
  display: inline;
  font-size: 20px;
  border: 2px solid white;
  border-radius: 10%;
  padding: 5px 15px;
  margin: 0 15px;
}

#guesses {
  margin-bottom: 35px;
}

#input-parent {
  width: 160px;
  margin: 35px auto 50px;
  position: relative;
}

#menu-btns {
  margin-bottom: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.my-btn {
  border: none;
  margin-left: 6px;
  margin-right: 6px;
}

#players-input {
  opacity: .85;
  color: #4c5b56;
  border: 2px solid white;
  border-radius: 50%;
  width: 145px;
  height: 145px;
  font-size: 15px;
}

#prjname {
  color: #4c5b56;
  font-size: 15px;
  padding-top: 20px;
  padding-bottom: 20px;
}

#submit {
  border-radius: 40%;
  border: none;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 90px;
  left: 110px;
}

.btn-info:hover {
  font-size: 20px;
}

.show-option {
  color: #F8F8FF;
}

#players-input:focus {
  outline: none;
}

.my-btn,
#submit,
#players-input,
.guess {
  -webkit-box-shadow: 0px 7px 10px -4px rgba(0, 0, 0, 0.62);
  -moz-box-shadow: 0px 7px 10px -4px rgba(39, 8, 8, 0.123);
  box-shadow: 0px 7px 10px -4px rgba(0, 0, 0, 0.62);
}
