#header {
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: white;
    border-radius: 15px;
    color: #0033a0;
    box-shadow: 0 4px 6px -5px #222;

    font-weight: bold;
    font-size: 56px;

    width: 98%;
    height: 100px;
    margin-left: 1%;
    margin-bottom: 1%;
    left: 0;
    top: 1%;

    overflow: hidden;
}

.body {
    display: flex;
    justify-content: center;

    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px -5px #222;

    width: 60%;
    margin-left: 20%;
    top: 10%;

    padding: 1%;
}

#congratsFeedback {
  grid-area: feedback;

  font-size: 1.2em;
  display: flex;
  flex-direction: column;
}

#feedbackInput {
  padding: 5px;
  margin-top: 10px;
  resize: none;
}

#sendFeedback {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  margin-top: 10px;
  padding: 5px 10px;
}

.feedback-divider {
    height: 2px;
    background-color: #ddd;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.inside_switch {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 34px;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.inside_switch:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  border-radius: 50%;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .inside_switch {
  background-color: #2196F3;
}

input:focus + .inside_switch {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .inside_switch:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}