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

body {
  background-color: gray;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

main {
  background-color: white;
  display: flex;
  justify-content: center;
  align-content: start;
  flex-wrap: wrap;
  width: 50%;
  border-radius: 20px;
}

#botoes {
  display: flex;
  justify-content: center;
  gap: 40%;
  padding-right: 20%;
  padding-left: 20%;
  width: 100%;
  height: 7%;
}

#entradas {
  position: relative;
  padding: 3%;
  width: 100%;
}

#entradas label {
  display: inline-block;
  margin-bottom: 1%;
  margin-top: 1%;
}

#entradas input {
  display: block;
  width: 100%;
  border-radius: 8px;
  padding: .7%;
  border: 2px solid #dfdfdf;
}

#botoes {
  padding: 3%;
}

#botoes button{
  background-color: white;
  cursor: pointer;
  height: 100%;
  width: 20%;
}

#botoes a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20%;
  height: 100%;
  color: black;
  border: solid black 2px;
}
