/* styles.css file */

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  text-shadow: 
    -1px -1px 0 black,  
    1px -1px 0 black,
    -1px  1px 0 black,
    1px  1px 0 black;
}
#video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.content {
  position: relative;
  z-index: 1;
  color: rgb(230, 213, 210);
  text-align: center;
  top: 50%;
}
#logo {
  width: 30%;
  height: auto;
}
h1 {
  font-size: 35px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  padding:10px 0;
  margin: 0 auto;
  width: 15%;
  min-width: 180px;
  background-color: rgba(75,120,187,0.8);
}
#timer, #notes {
  border: none;
  border-radius: 50px;
  padding: 20px 0;
  margin: 0 auto;
  width: 70%;
  background-color: rgba(174, 88, 83, 0.6);
}
p#description {
  margin-left: 15%;
  margin-right: 15%;
  text-decoration: underline;
}
p#countDown {
  font-size: 10vh;
  font-weight: bold;
}
hr {
  width: 70%;
  height: 5px;
  background-color: rgb(230, 213, 210);
  margin: 20px auto;
  border: none;
  border-radius: 5px;
}
#settings {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.setting-label {
  text-align: center;
  min-width: 120px;
}
.setting-input {
  width: 60px;
  text-align: center;
}
#controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
label {
  font-size: 20px;
}
input[type="number"] {
  padding: 20px 50px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: bold;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  background-color: rgba(230, 213, 210, 0.8);
  color: black;
}
button {
  padding: 10px 20px;
  margin-top: 10px;
  font-size: 16px;
  border: none;
  border-radius: 20px;
  color: rgb(230, 213, 210);
  cursor: pointer;
}
button#start {
  background-color: rgba(75,120,187,0.8);
}
button#stop {
  background-color: rgba(160,99,73,0.8);
}
button#reset {
  background-color: rgba(211,178,83,0.8);
}
button#music {
  background-color: rgba(83, 211, 158, 0.8);
}
button#start:hover{
  background-color: rgba(75,120,187,1);
  transform: scale(1.05);
  transition: 0.1s ease-in;
}
button#stop:hover{
  background-color: rgba(160,99,73,1);
  transform: scale(1.05);
  transition: 0.1s ease-in;
}
button#reset:hover{
  background-color: rgba(211,178,83,1);
  transform: scale(1.05);
  transition: 0.1s ease-in;
}
button#music:hover{
  background-color: rgba(83, 211, 158, 1);
  transform: scale(1.05);
  transition: 0.1s ease-in;
}
