2022-05-21 20:28:41 +00:00
|
|
|
@use 'colours';
|
|
|
|
|
2021-07-23 16:14:54 +00:00
|
|
|
.footer {
|
2022-05-21 21:42:40 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 100px;
|
|
|
|
border-top: 1px solid #eaeaea;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2021-07-23 16:14:54 +00:00
|
|
|
}
|
|
|
|
|
2021-07-23 18:35:41 +00:00
|
|
|
.footer a:hover {
|
2022-05-21 21:42:40 +00:00
|
|
|
color: #0070f3;
|
2021-07-23 18:35:41 +00:00
|
|
|
}
|
|
|
|
|
2021-07-23 16:14:54 +00:00
|
|
|
.footer a {
|
2022-05-21 21:42:40 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
flex-grow: 1;
|
|
|
|
color: #eaeaea;
|
2021-07-23 16:14:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.grid {
|
2022-05-21 21:42:40 +00:00
|
|
|
display: grid;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
grid-template-columns: 1fr 1fr 1fr;
|
2021-07-23 16:14:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 600px) {
|
2022-05-21 21:42:40 +00:00
|
|
|
.grid {
|
|
|
|
width: 90%;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
}
|
2021-07-23 16:14:54 +00:00
|
|
|
}
|