:root {
    font-size: 24px;
}

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

main {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1.5rem 0;
    gap: 10%;
    flex-wrap: wrap;
}

aside {
    display: flex;
    flex-direction: column;
}

button {
    flex-basis: 100%;
    margin: 0.6rem 0;
    padding: 0.6rem 4rem;
    font-size: 1.2rem;
    background-color: white;
    border-radius: 0.4rem;
}

.roboto-condensed {
    font-family: "Roboto Condensed";
}

/* colors */
.red {
    color: #e76f51;
    border-color: #e76f51;
}
.orange {
    color: #f4a261;
    border-color: #f4a261;
}
.yellow {
    color: #e9c46a;
    border-color: #e9c46a;
}
.green {
    color: #2a9d8f;
    border-color: #2a9d8f;
}
.blue {
    color: #264653;
    border-color: #264653;
}

header {
    text-align: center;
    font-size: 4rem;
}

footer {
    text-align: center;
    font-size: 1.15rem;
}

.container {
    border: 2px solid black;
    flex-basis: min(50vw, 65vh);
    height: min(50vw, 65vh);
    display: flex;
    flex-direction: column;
}

.row-container {
    display: flex;
    flex-basis: 100%;
}

.pixel {
    flex-basis: 100%;
    height: 100%;
}

.color-picker {
    padding: 0;
    flex-basis: 3rem;
    width: 3rem;
    border-radius: 0.9rem;
    margin: 0;
    background-color: white;
    border: none;
    align-self: center;
}

.slider {
    margin-top: 1.2rem;
}

.size-selector {
    margin: 0.5rem 0;
    align-self: center;
    font-size: 1.2rem;
}
