body {
  font-family: Arial, sans-serif;
  background: #f4f6fa;
  text-align: center;
  padding: 40px;
}

h1 {
  font-family: "Gill Sans", sans-serif;
  font-size: 30px;
  position:absolute;
  top:10px;
  right:100px;
}
p { 
  font-family: monospace;
  font-size:20px;
}

.Focused-Timer {
  position: fixed; /* makes it stay on screen */
  top: 10px;       /* distance from top */
  left: 10px;
  background-color: #f4f6fa;
  width: 200px;
  height: 100px;
  border: 2px solid rgb(33, 6, 6);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  
}

#time {
  font-size: 15px;
  margin: 0px 0;
}

button {
  padding: 10px 15px;
  margin: 5px;
  border: none;
  background: #4a6cf7;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background: #3a55d6;
}

.notes {
  margin-top: 30px;
}

textarea {
  width: 300px;
  height: 120px;
  padding: 10px;
}
#videoArea iframe {
  width: 100%;         /* takes full width of parent */
  max-width: 900px;    /* max width you want */
  height: 500px;       /* fixed height, or you can make responsive too */
  display: block;
  margin: 20px auto;   /* center horizontally */
  border: none;
}

/* Optional: make height responsive too */
@media (max-width: 1000px) {
  #videoArea iframe {
    height: 300px;
  }
}

@media (max-width: 600px) {
  #videoArea iframe {
    height: 200px;
  }
}
work-space {
  position:center;
  margin:10px;
  border-color:black;

}
.inspiring-quote {
  font-style: italic;
  font-size: 18px;
  margin: 20px 0;
  color: #2c3e50;
}