html {
  max-width: 100ch;
  padding: 1em 1em;
  margin: auto;
  line-height: 1.75;
  font-size: 1.25em;
  font-family: sans-serif;
  background-color: #F8F4E3;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0.5em 0 1em;
}

p,
ul,
ol {
  margin-bottom: 2em;
  color: #1d1d1d;
}

/* Navbar */

nav{
  background-color: #2A2B2A;
  padding: 5px;
  border-radius: 10px;
}

nav menu{
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-evenly;
}

nav a{
  color: #FF8966;
  text-decoration: none;
}

nav a:hover{
  text-decoration: underline;
}

/* code block */

pre{
  background-color: hsla(120, 1%, 17%, 0.744);
  padding: 16px;
  border-radius: 10px;
  overflow-x: auto;
}

code{
  color: #ff8a66f3;
  font-size: 1.2rem;
  font-family: monospace;
}
/* Pomodoro Styling */

.pomodoro{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.Ptimer{
  font-size: 5rem;
}

.Pbutton{
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  padding: 1rem;
}

.Pbutton button{
  font-size: 1rem;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: monospace;
}

#start{
  background-color: #4caf50 ;
  color: white
}

#pause{
  background-color: #f44336 ;
  color: white
}

#reset{
  background-color: #2196f3 ;
  color: white
}

.Psettings{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.Psettings label{
  font-size: 1rem;
  margin: 0 .5rem;
}

.Psettings input{
  font-size: 1rem;
  padding: .5rem 1rem;
  margin: 0 .5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-align: center;
}

.Pstatus{
  font-size: 1.5rem;
  font-weight: lighter;
  margin: 1rem;
}

.Pprogress{
  width: 300px;
  height: 1rem;
  background-color: #bcbcbc;
  margin-top: 1rem;
  border-radius: 100px;
  overflow: hidden;
}

#progress{
  width: 0%;
  height: 100%;
  background-color: #4caf50;
  transition: width .3sec ease;
}