body {
  background: grey;
  font-family: "Times New Roman", Times, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}

input {
  outline: 0;
}

.slot {
  display: flex;
  width: 300px;
  justify-content: space-between;
}

.input-container {
  display: grid;
  gap: 20px;
  border: 1px solid;
  justify-content: center;
  margin-top: 100px;
  padding: 10px;
  max-width: 400px;
  margin-inline: auto;
  background-color: cadetblue;
  border-radius: 10px;
}

.create-file {
  outline: 0;
  border: 1px solid red;
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  width: 100%;
}

.create-file:hover {
  background: green;
}

.btn-container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
