/* site-belenArias*/
:root {
    /* Mode 1 */
    /* color */
    --bg-color: #0376bd;
    --card-bg: #ffffff;
    --text-color: #000000;
}

body.dark {
    --bg-color: #020000;
    --card-bg: #0376bd;
    --text-color: #ffffff
    ;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: "Delius Swash Caps", cursive;
}

.contenedor {
    width: 1440px;
    margin: auto;
    text-align: center;
}

h1 {
    font-size: 130px;
    text-align: center;
    font-family: "Great Vibes", cursive;
}

.card {
    width: 20%;
    margin: 5%;
    height: 300px;
    background-color: var(--card-bg);
    float: left;
}

@media (max-width:1024px) {
    body {
        background-color: rgb(0, 153, 255);
    }

    .contenedor {
        width: 100%;
    }

    h1 {
        font-size: 60px;
    }

    .card {
        width: 100%;
        margin: 20px 0 50px 0;
    }

}

#toggle {
    background-color: #000000;
    color: #fff2f2;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    display:block;
    font-family: "Delius Swash Caps", cursive;
    transition: backround-color 0.3s, transform 0.3s;
}

#toggle:hover {
    background-color: #672020;
    color: black;
    transform: scale(1.05);
}
