2021-06-24 10:48:39 +02:00
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Epilogue:wght@600&family=Poppins:wght@500&display=swap');
|
|
|
|
|
2021-06-20 13:39:00 +02:00
|
|
|
* {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
html,
|
|
|
|
body {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2021-06-24 10:48:39 +02:00
|
|
|
font-family: 'Epilogue',-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
|
2021-06-20 13:39:00 +02:00
|
|
|
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
|
2021-06-27 12:44:22 +02:00
|
|
|
background: #1a202c;
|
2021-06-20 13:39:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.page-container {
|
|
|
|
padding: 2vw;
|
|
|
|
margin: 2vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 600px) {
|
|
|
|
.page-container {
|
|
|
|
padding: 2px;
|
|
|
|
margin: 2px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.grid {
|
2021-06-25 02:07:36 +02:00
|
|
|
margin: 50px;
|
2021-06-24 10:48:39 +02:00
|
|
|
margin-top: 50px;
|
2021-06-20 13:39:00 +02:00
|
|
|
display: grid;
|
2021-06-24 10:48:39 +02:00
|
|
|
grid-template-columns: repeat(auto-fill, 350px);
|
2021-06-20 13:39:00 +02:00
|
|
|
grid-gap: 10px;
|
|
|
|
}
|