* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "Open Sans";
}

::placeholder {
  color: rgb(221, 221, 221);
}
body {
  background-color: rgb(20, 19, 19);
  height: 100vh;
}
.wrapper {
  height: 90vh;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: rgb(20, 19, 19);
  transition: 0.8s all;
}

h1 {
  margin-bottom: 1.5%;
  color: #fff;
  font-weight: normal;
}
.box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  border-color: #fff;
  border-radius: 10px;
}
.container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 11px;
  border: 2px dashed white;
  border-top: none;
}

.header-container {
  background-color: rgb(78, 78, 78);
  width: 350px;
  padding: 20px 10px;
  font-size: 15px;
  margin-bottom: 4px;
  margin-top: 6px;
  text-align: center;
  border: 2px solid;
  border-color: white;
  border-bottom: none;
  border-right: dashed;
  border-left: dashed;
  border-top: dashed;
}

.top-buttons {
  display: flex;
  align-items: center;
}

input {
  padding: 25px;
  color: rgb(255, 255, 255);
  font-size: 1em;
  cursor: pointer;
  width: 70px;
  background-color: rgb(47, 51, 50);
  border: solid;
  border-radius: 20px;
  border-width: 1px;
  outline: none;
  margin: 0.2em;
}

.first-row,
.second-row,
.third-row,
.fourth-row,
.fifth-row {
  margin-bottom: 4px;
}

input[type="text"] {
  background-color: rgb(47, 51, 50);
  width: 233.5px;
}

input[type="button"]:hover {
  background-color: rgb(101, 101, 101);
  color: #fff;
}

#clear-button {
  color: #fff;
  background-color: rgb(255, 42, 42);
}
#clear-button::hover {
  background-color: aquamarine;
}
.profile {
  background-color: rgb(20, 19, 19);
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
}

a {
  padding: 20px;
}
