button:hover {
    cursor: pointer;
}

@font-face {
  font-family: windows;
  src: url('assets/windows-bold.ttf'); 
}

:root {
      --gridDivs: 32;
      /* template colors */
    --outline-color: #671aec;
    --darkFill-color: #9158f3;
    --mid-color: #b690f8;
    --lite2-color: #d4bcff;
    --lite-color: #ece7fd;

    --web16x10-height: ; 
    --web16x10-width: ; 

    --tab4x3-height: ; 
    --tab4x3-width: ; 

    --mob20x9-height: ; 
    --mob20x9-width: ; 


}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    font-family: windows;
    background-color: black; 
}

#pxlPaint {
    background-color: var(--darkFill-color);
    border: 2px solid var(--outline-color);
    border-radius: 5px;
    max-width: 745px;
    width: 80vw;
    max-height: 745px;
    height: 87vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
    margin-top: 5vh;
}

.icon {
    height: 25px;
}

#topBar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0px 15px;
}

#heading {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: var(--lite-color);
    gap: 15px;
}

#logo {
    height: 40px;
}

#artBoard {
    background-color: var(--lite-color);
    margin-right: 15px;
    border: solid var(--outline-color) 1.5px;
    border-radius: 3px;
}

#windowBtns button {
    background-color: var(--mid-color);
    border: 1px solid var(--outline-color);
    border-radius: 2px;
    color: var(--outline-color);
    height: 25px;
    width: 25px;
}

#windowBtns button:hover {
    background-color: var(--darkFill-color);
    color: var(--lite-color);
    border: 1px solid var(--lite-color);

}


#screen {
    display: flex;
    flex-direction: row;
}

#toolBar {
    background-color: var(--mid-color);
    border: 2px solid var(--outline-color);
    border-radius: 3px;
    margin: 0px 15px;
    width: 130px;
    height: 580px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;

}



.textBtn {
    width: 100px;
    height: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    background-color: var(--lite2-color);
    border: 2px solid var(--outline-color);
    font-family: windows;
    color: var(--outline-color);
    text-align: start;
}



#container {
    display: flex;
    height: 580px;
    width: 580px;
    flex-wrap: wrap;
}

.gridItem {    
    border: solid white .25px;
    box-sizing: border-box;
    flex: 0 0 calc(100% / var(--gridDivs));    
}


.color {
    background-color: var(--mid-color);
}

#colorPalette {

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100px;
    justify-content: center;
    gap: 10px;
    border: 2px solid var(--outline-color);
    background-color: white;
    padding: 10px 0px;
    
}


#colorPalette button {
    width: 34px;
    height: 34px;
    border: 2px solid var(--outline-color);
    border-radius: 2px;
    transition-duration: .5s;
}

#toolSelect {
    display: flex;
    flex-direction: row;
    max-width: 100px;
    justify-content: center;
    gap: 10px;

}

#bottomTools {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#canvasTools {
    display: flex;
    flex-direction: column;
    gap: 10px;

}

#toolSelect button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--lite2-color);
    border: 2px solid var(--outline-color);
    border-radius: 2px;
    transition-duration: .5s;
}

#toolSelect button:hover {
    background-color: var(--lite-color);

}
.textBtn:hover {
    background-color: var(--lite-color);
}

#colorPalette button:hover {
    scale: 1.2;
    transition-duration: .5s;
}

.black {
    background-color: #000000;
}
.white {
    background-color: #ffffff;
}

.pink {
    background-color: #ff41a6;
}
.darkPink {
    background-color: #c42378;
}
.litePink {
    background-color: #fc8bcc;
}
.pastelPink {
    background-color: #ffdef6;
}
.purple {
    background-color: #9158f3;
}
.litePurple {
    background-color: #af9ff7;
}
.pastelPurple {
    background-color: #d2c5ff;
}
.darkPurple {
    background-color: #4607a0;
}

.blue {
    background-color: #00a6ef;
}
.liteBlue {
    background-color: #85daff;
}
.teal {
    background-color: #00ccb3;
}
.liteTeal {
    background-color: #78ffeb;
}
.orange {
    background-color: #ff9e03;
}
.yellow {
    background-color: #ffcf10;
}
.grey {
    background-color: grey;
}

.eraser {
    background-color: #ece7fd;
}
 
.rainbow {
    top: 1vh; 
    width: 100vw; 
    z-index: -2; 
    position: fixed;
}

.cloud {
   
    position: fixed; 
    bottom: 0; 
    z-index: -3; 
    width: 100%; 
    pointer-events: none;
}

#backtoCl {
    height: 10vh; 
    position: fixed; 
    z-index: 9; 
    left: 2vh; 
    top: 2vh;
    transition-duration: .5s; 
}
#backtoCl:hover {
    transition-duration: .5s;
    scale: 1.1;
}