* {
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  align-items: center;
}

body {
  font-family: Arial, sans-serif;
  background: #f4f6f9;
  margin: 0;
  padding: 20px;
}

header {
  background-color: rgb(49, 49, 49);
  width: auto;
  padding: 20px;
  color: #ffffff;
  border: none;
  border-radius: 15px 15px 0px 0px;
}
section.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

h1 {
  text-align: center;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

input, textarea, select {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  padding: 10px 15px;
  border: none;
  background: #007bff;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

ul {
  display: flex;
  flex-direction: row;
  gap: 8px;
  list-style-type: none;
}

a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}