@import url('https://fonts.googleapis.com/css2?family=Style+Script&display=swap');

html, body {
    margin: 0;
    height: 100%;
}

body {
    color: white;
    background-color: #414141;
    display: flex;
    justify-content: center;
    align-items: stretch;
    min-width: 550px;
    min-height: 550px;
}

#content {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

#grid-slider-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#grid-container {
    border: 5px solid #241c1ced;
    width: 550px;
    height: 550px;
    display: flex;    
}

.pixel-border {
    border: 1px solid rgba(128, 128, 128, 0.5);
}

#button-container {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    background-color: #616161;
    color: wheat;
    border: 2px solid black;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: auto;
}

#main-title {
    font-family: "Style Script", Arial;
    font-size: 40px;
    padding: 12px;
    background-color: #717171;
    border: 2px solid black;
    border-radius: 10px;
}

#color-pick-btn {
    background: none;
    border: none;
}

.default-btn {
    border: 2px solid wheat;
    border-radius: 5px;
    background: none;
    color: wheat;
    padding: 5px;
    margin: 5px;
}

.default-btn:hover {
    cursor: pointer;
    border: 2px solid black;
    background-color: wheat;
    color: black;
}

#clear-grid-btn {
    margin-top: 15px;
}
