header button {
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  border: none;
  background-color: #f44336;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

header button:hover {
  background-color: #c41b18;
}

body {
  background-color: #121212;
  color: #fff;
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.container {
  text-align: center;
  height: 65vh;
  max-width: 90vw;
  margin: 0 auto;
  padding: 20px;
  margin-top: 10vh;
  margin-bottom: 10vh;
  background-color: #2c2c2c;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

p {
  margin-bottom: 20px;
}

input[type="file"] {
  margin-bottom: 10px;
}

progress {
  width: 100%;
  margin-bottom: 10px;
}

button#upload-btn {
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  border: none;
  background-color: #4CAF50;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

button#upload-btn:hover {
  background-color: #45a049;
}

#status-message {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
  white-space: pre-line;
}

#status-message a{
  align-self: center;
  position: relative;
}

#status-message button {
  background-color: #008CBA;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  margin-top: 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out;
}

#status-message button:hover {
  background-color: #007A8C;
}

a.download-link {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  background-color: #4caf50;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out;
}

a.download-link:hover {
  background-color: #45a049;
}

#status-message a,
#status-message button {
  margin-top: 10px;
}

#download-link {
  font-weight: bold;
}

.container p {
  margin-bottom: 10px;
  line-height: 0.5;
}

.size-limit {
  font-weight: bold;
  color: #ff5f5f;
}

.time-limit {
  font-weight: bold;
  color: #ff5f5f;
}

.safe-secure {
  font-weight: bold;
  color: #00cc66;
}