body, html {
margin: 0;
overflow: hidden;
}
body {
background-color: #2c2c36;
}
.topBar {
grid-column: 2/-1;
grid-row: 1/2;
background-color: #252531;
}
.topBar button {
border: none;
background: none;
color: white;
font-size: 20px;
height: 100%;
padding: 0 10px;
font-family: Helvetica, 'Raleway', sans-serif;
}
.container {
display: grid;
grid-template-columns: 150px 1fr;
grid-template-rows: 5vh 1fr;
}
.animationsContainer {
display: grid;
grid-row: 2/-1;
grid-column: 2/-1;
margin: 10px 10px;
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;
}