@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

body {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  margin: 0;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.clock-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
button {
  background: #333;
  color: #fff;
  border: 0;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.card {
  background: #f4f4f4;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 7px 20px;
  width: 300px;
  border-radius: 10px;
}

.form-input {
  margin-bottom: 20px;
}

label {
  margin-right: 10px;
  font-weight: bold;
}

.canvas-container {
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background-color: #f4f4f4;
  position: relative;
}
