/* Filename - style.css */
/* https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_full_page */
body {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;

  /* background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */

}

.container {

display: flex;
flex-direction: column;



  /* border: 1px solid black; */
  /* padding: 30px; */
  border-radius: 10px;
  /* box-shadow: 5px 5px #77777788; */
}

.error {
  color: red;
  margin-bottom: 30px;
}

.msg {
  color: brown;
  margin: 20px 0px 10px 0px;
  font-size: 25px;
  font-weight: bold;
}

.tag {
  /* display: flex; */
  /* flex-direction: row; */
  gap: 10px; /* Optional: Adds spacing between items */
  /* justify-content: space-between; */
  margin: 0px 0px 20px 0px;
}

/* .tags {
  margin: 0px 0px 20px 0px;
} */

input {
  border-radius: 10px;
}

.details {
  width: 200px;
  height: 20px;
}

.info {
  margin: 2px 0;
}

.btn {
  margin-top: 20px;
  width: 120px;
  height: 30px;
  background-color: black;
  color: white;
}

/* ================================ */
#countdown-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.countdown-section {
  text-align: center;
  margin: 0 10px;
}

.countdown-section span {
  font-size: 26px;
  font-weight: bold;
  color: #000;
}

.countdown-label {
  font-size: 14px;
  color: #777;
}


/* ================================ */
textarea {
  width: 100%;
  height: 200px;
  padding: 12px 20px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #ffffff;
  font-size: 16px;
  resize: none;
}