/* site-anaisCastillo */
:root {
  /* Mode 1 */
  /* color */
  --big-color: #ffffff;
  --card-bg: #c2cccb;
  --texto-color: #bb6fe4;
}
       
body.dark { 
  --big-color: #000000;
  --card-bg: #484747;
  --texto-color: #ffffff;

}


body {
    background-color: var(--big-color);
    color: var(--texto-color);
    font-family: 'Franklin Gothic Medium', sans-serif;
}
.contenedor {
    width: 1440px;
    margin: auto;
}

h1 {
    font-size: 200px;
    text-align: center;
    font-family: "Comic Relief", system-ui;
}
h2 {
    font-size: 50px;
    text-align: center;
    font-family: "Comic Relief", system-ui;
}
.card {
    width: 20%;
    margin: 2%;
    height: 300px;
    background-color: var(--card-bg);
    float: left;
}

@media (max-width:1024px){
body {
        background-color: aqua;
}
.contenedor{
    width: 100%;

}  
  h1{
    font-size: 60px;
  }
.card {
    width: 100%;
    margin: 20px 0 50px 0;
}

}

#toggle {
    background-color: #0176DE;
    color: #ffffff;
    font-weight: bold;
    padding: 12px 24px;
    border:none;
    border-radius: 4px;
    font-size: 16px;
    display: block;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;;
}
#toggle:hover{
    background-color: rgb(118, 60, 166);
    transform: scale(1.05);

}

