@import url('./other-file.css');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  display: flex;
  flex-direction: column;
  font-family: 'Judson', serif;
  margin: 0;
  border: 0;
  padding: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 100vh;
  background-color: #f7f3f1;
}

#btn-add,
#btn-remove {
  width: 78px;
  height: 34px;
  text-align: center;
  border-radius: 12px;
  margin-top: 5px;
  margin-right: 8px;
  padding-bottom: 4px;
  box-shadow: 1px 15px 10px -15px rgb(180, 174, 174);
}

#btn-add {
  background-color: #f03f35;
  color: #dff1f1;
}

#btn-remove {
  background-color: #b7e3e4;
  color: #f03f35;
  width: 90px;
}

#enter {
  width: 250px;
  height: 45px;
  padding: 2px 10px 1px 1px;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
  cursor: text;
  color: #eb3e35;
  border: 2px solid #f03f35;
}

input,
select,
label {
  font-family: 'Judson', serif;
  font-size: 19px;
  line-height: 10px;
  text-decoration: none;
  border: 2px solid transparent;
}

input:focus {
  outline: none;
}

.input-field {
  display: inline;
  width: 470px;
  height: 100px;
  margin-top: 5px;
}

#input-form {
  width: 480px;
}

label {
  font-weight: 500;
  padding-top: 2px;
  margin-right: 8px;
  color: #f03f35;
}

li {
  list-style: none;
}

#list-container {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 400px;
  height: 400px;
  font-size: 18px;
  padding: 10px;
  font-family: 'Judson', serif;
  color: #eb3e35;
  border: 2px solid #a3caca;
}

::placeholder {
  padding-left: 10px;
  color: #6d8383;
}

#root {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  max-width: auto;
  min-width: auto;
  margin-bottom: 50px;
}

select {
  width: 150px;
  height: 45px;
  padding: 0 10px 0 10px;
  border-radius: 10px;
  color: #f03f35;
  font-weight: 600;
  border: none;
}

select:focus {
  outline: none;
}

#sort-type {
  text-align: center;
  border: 2px solid #a3caca;
}

.sorter-menu {
  display: inline;
  width: 280px;
  height: 55px;
  margin: 5px 18px 30px 30px;
}

.text-box {
  display: flex;
  width: 750px;
  height: 100px;
  margin-left: 20px;
  padding-left: 20px;
  max-width: auto;
  min-width: auto;
}

#title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 48px;
  line-height: 20px;
  color: #f03f35;
  display: block;
  justify-content: center;
  align-content: center;
  align-self: center;
  max-width: auto;
  min-width: auto;
  padding-top: 30px;
  width: 500px;
  height: 100px;
}

#tool-description {
  font-family: 'Judson', serif;
  font-size: 20px;
  line-height: 20px;
  display: block;
  color: #db3229;
  justify-content: center;
  align-content: center;
  align-self: center;
  max-width: auto;
  min-width: auto;
  width: 500px;
  height: 100px;
  margin-top: 60px;
}

.top-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-center;
  width: 600px;
  height: 150px;
  margin-bottom: 30px;
}

.warning {
  padding-left: 5px;
  width: auto;
  height: auto;
  color: #eb3e35;
  font-weight: 700;
  font-size: 18px;
  font-family: 'Judson', serif;
}
