/* Set common styles for all elements */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Set specific styles for each element */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

h1,
p,
#result {
  margin: 20px auto;
  max-width: 600px;
}

form {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

label {
  display: block;
  margin-bottom: 10px;
  color: #444;
  font-weight: bold;
  font-size: 18px;
}

input[type="url"],
input[type="text"],
input[type="email"] {
  display: block;
  width: 100%;
  padding: 7px;
  border: 2px solid #ccc;
  border-radius: 5px;
  transition: border-color 0.3s ease-in-out;
  font-size: 18px;
}

input[type="url"]:focus,
input[type="text"]:focus,
input[type="email"]:focus {
  border-color: #007bff;
}

button[type="submit"] {
  display: block;
  width: 100%;
  padding: 10px;
  margin-top: 20px;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  font-size: 18px;
}

button[type="submit"]:hover {
  background-color: #0069d9;
}
