@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;

#root {
    text-align: center;
}

:root {
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

a {
    font-weight: 500;
    color: #646cff;
    text-decoration: inherit;
}

body {
    place-items: center;
    min-width: 320px;
    min-height: 100vh;
}

h1 {
    font-size: 3.2em;
    line-height: 1.1;
}

button {
    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;
}

button:focus,
button:focus-visible {
    outline: 4px auto -webkit-focus-ring-color;
}


#intro-text {
    font-size: 2rem;
    line-height: 2rem;
    font-weight: 400;
}

strong {
    font-weight: 700;
}

/*.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 . . . .";*/
/*}*/

.button {
    /*grid-area: buttonArea;*/
    max-height: 4rem;
    align-self: center;
}

.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);
    }
}