|
|
|
@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap');
|
|
|
|
|
|
|
|
html,
|
|
|
|
body {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
|
|
|
|
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
|
|
|
|
font-size: 1.1em;
|
|
|
|
background-color: #1B1C22;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1, h2, h3 {
|
|
|
|
font-family: 'Dela Gothic One', cursive;
|
|
|
|
}
|
|
|
|
|
|
|
|
.link:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page {
|
|
|
|
min-height: 100vh;
|
|
|
|
background-color: #1B1C22;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
max-width: 1200px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
padding: 2em 0;
|
|
|
|
gap: 2em;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card {
|
|
|
|
border-radius: 10px;
|
|
|
|
box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 1em;
|
|
|
|
padding: 2em;
|
|
|
|
color: white;
|
|
|
|
background-color: #25262C;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card p {
|
|
|
|
font-size: 1.1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content .buttons {
|
|
|
|
width: 300px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content .buttons > a {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
gap: 1em;
|
|
|
|
border-radius: 10px;
|
|
|
|
padding: 0.4em 2em;
|
|
|
|
font-size: 1.3em;
|
|
|
|
box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
|
|
|
|
background-color: rgba(79,79,255,1);
|
|
|
|
color: white;
|
|
|
|
transition-duration: 0.1s;
|
|
|
|
font-family: 'Dela Gothic One', cursive;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content .buttons > a:hover {
|
|
|
|
transform: scale(0.95);
|
|
|
|
transition-duration: 0.1s;
|
|
|
|
}
|