body {
  font-size: large;
}

p {
  font-size: large;
}

li {
  font-size: large;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: xx-large;
}

h3 {
  font-size: x-large;
}

button {
  background-color: crimson;
  color: white;
  border: crimson solid 2px;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: large;
}

button:hover {
  background-color: white;
  color: crimson;
  cursor: pointer;
}

input {
  padding: 10px;
  width: 50%;
  margin: 10px;
  border-radius: 10px;
  border: lightslategray 2px solid;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  font-size: medium;
}

label {
  font-size: larger;
  font-weight: bold;
}

.formSection {
  margin: 20px 0;
}

.currentSection {
  display: flex;
  flex-direction: row;
  position: sticky;
  top: 10px;
  background-color: white;
  z-index: 1000;
  border: lightslategray 2px solid;
  padding: 10px;
  margin: 10px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.currentSection div {
  flex: 1;
  padding: 20px;
}

.currentSection div:first-child {
  border-right: lightslategray 2px solid;
}

@media screen and (max-width: 1200px) {
  .currentSection {
    flex-direction: column;
    margin: none;
  }

  .currentSection div {
    padding: 10px;
  }

  .currentSection div:first-child {
    border-right: none;
    border-bottom: lightslategray 2px solid;
  }
}

@media screen and (max-width: 600px) {
  button {
    display: block;
  }
  input {
    margin: 10px 0;
    width: 90%;
  }
}
