@import url("https://fonts.googleapis.com/css?family=Muli");

body, html {
  margin: 0;
  line-height: normal;
}
h1 {
  display: inline;
  font-weight: bold;
}
i {
  display: block;
  margin-top: 6px;
}
hr {
  color: white;
  margin: 1px 0;
}
.player {
  height: 100%;
  width: 100%;
  text-align: center;
  background-color: grey;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 45px;
}
.active {
  background-color: orange;
}
.over_msg {
  display: none;
  text-align: center;
  margin-top: 1%;
  color: red;
  font-weight: bold;
  font-size: 50px;
  font-family: Muli;
}
#moves_num {
  margin-top: 0.8%;
  text-align: center;
  font-size: 1.25em;
}
.myModal {
  display: none;
  position: fixed;
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4);
}
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}
.modal-btn {
  height: 50px;
  width: 150px;
  border: 2px solid black;
  color: white;
  background-color: black;
  transition: 0.5s;
}
.modal-btn:hover {
  color: black;
  background-color: white;
}

/* Animations (For The Modal) */
@keyframes zoom-in {
  
}
@keyframes zoom-out {
  
}

.article {
  padding: 10% 10% 1%;
}

a {
  color: blue;
}