.animationsContainer { display: grid; grid-row: 2/-1; grid-column: 2/-1; margin: 10px 10px; height: 100%; grid-template-rows: 10vh auto auto 10vh; grid-template-columns: repeat(5, 1fr); grid-gap: 10px; } .animationsContainer h2 { grid-column: 1/-1; grid-row: 1/2; color: white; font-size: 50px; align-self: center; text-align: center; font-family: 'Raleway', sans-serif; } .animationsContainer button { border: solid #252531 2px; border-radius: 10px; background-color: #252531; color: white; font-size: 40px; font-family: 'Roboto', sans-serif; } .animationsContainer button:hover { background-color: #2f2f3d; } .settingsContainer { margin: 10px; display: grid; grid-template-columns: repeat(5, 1fr); grid-template-rows: 10vh 10vh 10vh 20vh 20vh 10vh; grid-gap: 10px; } .settingsContainer h2 { grid-column: 1/-1; grid-row: 1/2; color: white; font-size: 50px; align-self: center; text-align: center; font-family: 'Raleway', sans-serif; } .settingUnit p { color: white; font-family: 'Roboto', sans-serif; text-align: center; font-size: 28px; } .settingUnit input { display: block; margin: auto; width: 95%; border: none; background-color: #47475b; color: white; height: 30px; font-size: 20px; font-family: 'Roboto', sans-serif; } .settingsContainer button { border: solid #252531 2px; border-radius: 10px; background-color: #252531; color: white; font-size: 30px; font-family: 'Roboto', sans-serif; } .settingsContainer button:hover { background-color: #2f2f3d; } #set { grid-row: -2/-1; grid-column: -2/-1; }