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

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
}

footer {
  display: flex;
  justify-content: center;
  margin: 1rem auto;
}

.heading {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#title {
  font-size: 30px;
}

.main {
  margin: 30px 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.show_form {
  border: #ccc solid 1px;
  width: 100px;
  height: 30px;
  border-radius: 4px;
  cursor: pointer;
  color: #3f3f3f;
  background-color: #dfdfdf;
  margin-top: 1rem;
}

.loggedOut,
.loggedIn {
  visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#signout {
  margin-bottom: 1rem;
}
