/*
Theme Name: Luis Theme
Author: Luis Hernandez Pinillo
Description: My theme for Spintech
Version: 1.0
*/


/* Reset some default styles */
body, h1, ul {
    margin: 0;
    padding: 0;
}

/* Center content */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: black;
    color: white;
    font-family: 'Open Sans', sans-serif;
    padding:20px;
}

.site-title {
    margin-bottom: 20px;
    text-align: center;
}

.circle-row, .square-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.circle, .square {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    transition: opacity 0.3s, transform 0.3s;
}

/* Colors for circles */
#red-circle { background-color: red; }
#green-circle { background-color: green; }
#blue-circle { background-color: blue; }
#orange-circle { background-color: orange; }
#yellow-circle { background-color: yellow; }

/* Colors for squares */
.square[data-color="Red"] { background-color: red; }
.square[data-color="Green"] { background-color: green; }
.square[data-color="Blue"] { background-color: blue; }
.square[data-color="Orange"] { background-color: orange; }
.square[data-color="Yellow"] { background-color: yellow; }

/* Add this to your CSS */
.square {
    border-radius: 0;
}

/* Active state for square */
.square.active {
    width: 100px;
    height: 100px;
    border-radius: 0;
}

/* Color label */
/* .circle::before, .square::before {
    content: attr(data-color);
    display: block;
    text-align: center;
    font-weight: bold;
    margin-top: 10px;
} */
.color-label {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
}

.circle, .square {
    position: relative;
}


/* Responsive */
@media (max-width: 768px) {
    .container {
        background-color: white;
        color: black;

    }
    .circle-row, .square-row{
        flex-direction: column;
    }
}
