<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css2?family=Tilt+Neon&amp;display=swap");
@import "./style-card.css";
@import "./style-timer.css";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    position: relative;
    margin: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #CF944F;

    font-family: "Tilt Neon", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "XROT" 0,
        "YROT" 0;
}

.container {
    width: 100vw;
    padding: 10px 0;
    background-color: #FFD999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

h2 {
    font-size: 30px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

#reset-btn {
    padding: 15px 20px;

    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;

    color: #267C65;
    border: none;
    outline: none;
    cursor: pointer;
}

#reset-btn:focus {
    color: #FFFFFF;
    background-color: #267C65;
}

#flip-card-game {
    max-width: 100%;

    display: grid;
    grid-template-columns: repeat(5, min(50px));

    border: 1px solid #FFFFFF;

    background: no-repeat center;
    /* background-image: url("../assets/img/cat.png"); */
}

#backsound-toggle{
    font-size: 25px;
    color: #FFFFFF;

    position: absolute;
    top: 10px;
    right: 10px;

    i{
        cursor: pointer;
    }
}</pre></body></html>