@font-face {
  font-family: "clockicons";
  src: url("./clockicons.ttf");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  /* background: #333; */
  background: #1a1a1a;
  color: whitesmoke;
}
.header {
  background: #444444;
  border-radius: 10px;
  margin-top: 30px;
}
.headerLink {
  text-decoration: none;
  color: whitesmoke;
}
.headerLink h4 {
  display: inline-block;
  padding: 30px;
}
.headerLink:hover {
  text-decoration: none;
  color: rgb(163, 163, 163);
}
.header h4 {
  text-align: center;
}
/* .TimerBtn {
  display: block;
  font-size: 4em;
  text-align: center;
  margin: 200px auto;
  color: crimson;
  font-family: Arial, Helvetica, sans-serif;
} */
.minutes,
.dot,
.seconds,
.hours {
  font-size: 200px;
}
.timeDisplay {
  font-family: "clockicons";
}
.main_container {
  margin-top: 10px;
  border-radius: 30px;
  color: #ff9500;
  background: #444444;
  margin: 10px;
}
.secList p,
.minList p {
  width: 58%;
  text-align: center;
  padding-top: 20px;
  border-bottom: 0.5px solid #ff950070;
  margin: 10px auto;
  color: whitesmoke;
}
.secList,
.minList {
  margin-top: 10px;
  border-radius: 30px;
  color: white;
  background: #444444;
}
.minList {
  margin-top: 50px;
}
.minList h1,
.secList h1 {
  padding-top: 10%;
}
.secList a,
.minList a {
  text-decoration: none;
  color: whitesmoke;
}
.secList a:hover,
.minList a:hover {
  text-decoration: none;
  color: rgb(207, 207, 207);
  background-color: #303030;
  border-radius: 10%;
}
footer p {
  text-align: center;
  color: whitesmoke;
  margin: 30px;
}
.COLOR {
  color: crimson;
}

a {
  padding: 5px;
  margin: 5px;
  text-decoration: none;
}
label {
  color: whitesmoke;
}
h2 {
  text-align: center;
  color: whitesmoke;
  padding-top: 2%;
}

/* ///////////// */
/* Create New Blog Form */
.create {
  border-radius: 20px;
  /* max-width: 300px; */
  text-align: center;
  background: #303030;
  padding: 10px;
}
.create p {
  width: 50%;
  text-align: center;
  margin: 15px auto;
  border-bottom: 0.5px solid #ff950070;
}
.create label {
  text-align: center;
  display: block;
}

.create input {
  text-align: center;
  width: 50%;
  padding: 3px 5px;
  outline: none;
  margin: 1px auto;
  border: 1px solid #ddd;
  box-sizing: border-box;
  display: block;
}
.create input:focus {
  outline: none;
}
.create button {
  background: none;
  border: 1px solid #ff9500;
  color: #fff;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.6s;
}
.create button:hover {
  background: #ff9500;
  color: rgb(255, 255, 255);
}

@media only screen and (max-width: 800px) {
  /* For mobile phones: */
  .header {
    padding: 2px !important;
  }
  .headerLink h4 {
    padding: 10px;
    /* margin: 0 auto !important; */
  }
  h4:last-child {
    font-size: 10px;
  }

  .minutes,
  .dot,
  .seconds,
  .hours {
    font-size: 65px;
  }
  .btn,
  .button-primary {
    padding: 5px;
    font-size: 10px;
  }
  .create {
    /* max-width: 512px; */
    padding: 5px;
  }
  .create input {
    width: 30%;
    padding: 0;
  }
  .create p {
    font-size: 10px;
    width: 68%;
    text-align: center;
    margin: 15px auto;
    border-bottom: 0.5px solid #ff950070;
  }
  .secList p,
  .minList p {
    font-size: 10px;
    width: 78%;
    text-align: center;
    padding-top: 20px;
    border-bottom: 0.5px solid #ff950070;
    margin: 10px auto;
    color: whitesmoke;
  }
}
