body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

h1 {
    font-size: 2.6rem;
    font-weight: 500;
    margin: .6em 0 .6em .5em;
    line-height: 2rem;
}

.inputs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6em;
    padding: 1em;
    font-size: 1.3rem;
}

.color-picker input {
    width: 4rem;
    height: 2rem;
}

.color-num-input select {
    width: 4em;
    text-align: center;
}

.generate-btn {
    margin: .8em auto;
    padding: .6em 1.2em;
    font-size: 1.4rem;
    border: none;
    border-radius: 8px;
    background-color: #24a0ed;
    color: white;
    font-weight: 600;
} 

.colors {
    height: 50vh;
    width: 100vw;
}

.color-grid {
    display: flex;
    height: 100%;
}

.color-block {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.color-block p {
    transform: rotate(-90deg);
}

.color-block:active {
    transform: scale(0.98);
}

.color-block:active {
    font-weight: 600;
}

footer {
    text-align: center;
    margin-top: 3em;
}