h1 { 
    color: var(--orange);
    letter-spacing: 2px;
    margin: 40px;
}
#workout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 10px;
    margin-top: 50px;
}
#name-label, #date-label, #duration-label, #intensity-label, #name, #date, #duration, #intensity {
    margin: 0px;
}
#name-label, #date-label, #duration-label, #intensity-label, .exercise-label, .weight-label, .sets-label, .reps-label, .weight-label {
    margin-right: 30px;
    grid-column: 1/2;
}
#name, #date, #duration, #intensity, .exercise, .weight, .sets, .reps, .unit {
    max-width: 300px;
    border: solid black 1px;
    border-radius: 5px;
    grid-column: 2/3;
}
#name-label, #date-label, #duration-label, #intensity-label {
    justify-self: end;
}
#name, #date, #duration, .weight, .sets, .reps, .unit {
    max-width: 296px;
}
#exercise-box {
    grid-column: 1/3;
    max-width: 630px;
    justify-self: center;
    width: 100%;
}
.exercise-info {
    display: grid;
    border-top: var(--navy) 1px solid;
    grid-template-columns: 50px 1fr 6fr;
    row-gap: 15px;
    width: 100%;
    margin-top: 10px;
    padding: 15px 0;
    padding-bottom: 5px;
}
.removeEx, .removeSet {
    color: red;
    font-size: 1.4em;
    cursor: pointer;
    align-self: start;
    margin: 0 0 0 30%;
    justify-self: start;
}
.add-set {
    grid-column: 1/4;
    width: 200px;
    justify-self: center;
    border: 2px var(--orange) solid;
    border-radius: 10px;
    background-color: var(--gray);
}
.set-box {
    justify-content: center;
    grid-column: 1/4;
    max-width: 630px;
    justify-self: center;
    width: 85%;
    margin: 0 20px 0 auto
}
.set-info {
    display: grid;
    border-top: var(--navy) 1px solid;
    grid-template-columns: 50px 1fr 3fr;
    row-gap: 15px;
    width: 100%;
    padding: 15px 0;
    margin-bottom: 10px;
    padding-bottom: 5px;
    justify-self: center;
}
.exercise-label, .weight-label, .sets-label, .reps-label {
    grid-column: 2/3;
    justify-self: end;
    align-self: center;
}
.exercise, .weight, .sets, .reps {
    grid-column: 3/4;
}
.add-set {
    width: 100px;
}
.reps {
    width: 193px;
}
.exercise {
    max-width: 250px;
}
.weight-group {
    grid-column: 2/4;
    display: grid;
    grid-template-columns: 2fr 2fr 4fr;
}
.weight-label {
    grid-column: 1/2;
}
.weight {
    grid-column: 2/3;
    width: 95%;
    grid-row: 1/2;
}
.unit {
    width: 75px;
    grid-column: 3/4;
    grid-row: 1/2;
}
#add-exercise {
    grid-column: 1/3;
    width: 200px;
    justify-self: center;
    border: 2px solid var(--orange);
    background-color: var(--gray);
}
#add-exercise:hover {
    cursor: pointer;
}
#submit {
    align-self: center;
    justify-self: center;
    width: 125px;
    border: 1px solid black;
    border-radius: 20px;
    background-color: #F8F9FA;
    grid-column: 1/3;
}
#submit:hover {
    cursor: pointer;
    background-color: #FF6B35;
}

@media screen and (min-width: 1200px) {

    .exercise-info {
        border: 1px var(--navy) solid;
        padding-bottom: 15px;
        padding-left: 50px;
    }
    .remove:active {
    font-size: 0.75em;
    }
}