Newer
Older
@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ysabeau+SC:wght@500&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
font-weight: 500;
color: #646cff;
text-decoration: inherit;
place-items: center;
min-width: 320px;
min-height: 100vh;
border-radius: 8px;
border: 1px solid transparent;
padding: 0.6em 1.2em;
font-size: 1em;
font-family: inherit;
background-color: #1a1a1a;
cursor: pointer;
transition: border-color 0.25s;
#intro-text {
font-size: 2rem;
line-height: 2rem;
font-weight: 400;
/*.container {*/
/* display: grid;*/
/* grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;*/
/* grid-template-rows: 10rem 30rem 10rem;*/
/* gap: 0 0;*/
/* grid-auto-flow: row;*/
/* grid-template-areas:*/
/* ". text text text text text text text ."*/
/* ". . . girly girly girly . . ."*/
/* ". . . . buttonArea . . . .";*/
/*}*/
}
.girly {
grid-area: girly;
}
.text {
grid-area: text;
align-self: center;
}
.logo {
width: 100px;
height: 100px;
animation: spin 2s linear infinite;
}
.logo-hovered {
width: 100px;
height: 100px;
animation-play-state: paused;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}