.parent {
  justify-content: center;
  align-items: center;
  margin-left: 10%;
  margin-right: 10%;
}

.dc-or-c-div {
    display: flex;
    justify-content: center;
    align-items: top;

    top: 0;
    left: 0;
  }

.cal-or-std-div {
    width:100%; height:60%; padding-left:10px
}

.notch-input {
    width: 30%;
}

.save-blinker {
  animation: blinker 2s linear infinite;
  display:none;
  color:red;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}