:root {
    --grid-rows: 1;
    --grid-cols: 1; 
}

#page-container {
    display:grid;
    grid-template-columns: 1fr 800px 1fr;
    grid-template-rows: 100px 1fr 100px;
    grid-template-areas: 
                 " . header ."
                 ". sketch-area rightBtns"
                 ". . . ";        

}

#sketch-area {
    display: grid;
    grid-area: sketch-area;
    justify-content: center;
    align-content: center;
    align-self: center;
    grid-gap: 0;
    height: 550px;
    grid-template-rows: repeat(var(--grid-rows), 1fr);
    grid-template-columns: repeat(var(--grid-cols), 1fr);
    border-style: solid;
    border-width: 100px;
    border-color: #f52a2a;
    border-radius: 20px;
    box-shadow: 8px 8px #cf0606;
    position: relative;
    top: 30px;
}

.grid-item {
    background-color: lightgray;
    
}


.main-header {
    grid-area: sketch-area;
    text-align: center;
    align-self: start;
    font-family: 'Cabin Sketch', cursive;
    font-size: 34px;
    font-weight: 400;
    z-index: 1;
    position: relative;
    bottom: 2px;
}

#title {

    margin-bottom: 0px;
}


.toggle {
    height: 100px;
    width:100px;
    border-radius: 100%;
    background-color: #cfd1d0;
    box-shadow: 3px 3px lightslategray;
    
}

#left-toggle {
    grid-area: sketch-area;
    align-self: end;
    position: relative;
    left: 8px;
    bottom: 8px;
    top: 25px;
}

#right-toggle {
    grid-area: sketch-area;
    align-self: end;
    justify-self: end;
    position: relative;
    right: 8px;
    bottom: 8px;
    top: 25px;
}

.button-container {
    grid-area: header;
    place-self: center;
   

}

.button {
    padding: 10px;
    color: black;
    background-color:white;
    border: 1px solid black;
    

}

.button-container input {
    height: 30px;
    width: 60px;
    text-align: center;
}

p {
    font-family: 'Shadows Into Light', cursive;
    font-size: 22px;
    grid-area: header;
    text-align: center;
    position: relative;
    top: 10px;
}

#randomBtn {
    margin-left: 40px; 
}

#grid-text {
    text-align: left;
    position: relative;
    left: 20px;
    display: inline-block
}

#color-text {
    text-align: right;
    display: inline-block;
    float: right;
    position: relative;
    right: 67px;

}