@import url('https://fonts.googleapis.com/css2?family=Bakbak+One&family=Fuzzy+Bubbles:wght@700&family=Oswald&family=Pacifico&family=Roboto+Slab&display=swap');


/*
Imported Fonts:
font-family: 'Bakbak One', cursive;
font-family: 'Fuzzy Bubbles', cursive;
font-family: 'Oswald', sans-serif;
font-family: 'Pacifico', cursive;
font-family: 'Roboto Slab', serif;
*/


/* Plate Widget */
.wall-plate {
    height: 500px;
    width: 350px;
    border-radius: 7px;
    border: 2px solid black;
    position: relative;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.5), inset -4px -4px 6px #666666, inset 4px 4px 6px #FFFFFF;
    background: #fffed0;
    }
.wall-plate::after {
    content: "";
    height: 500px;
    width: 350px;
    border-radius: 7px;
    background: linear-gradient(145deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 36%, rgba(255,255,255,0.05) 56%, rgba(255,255,255,0.25) 66%, rgba(255,255,255,0) 85%, rgba(255,255,255,0) 100%);
    position: absolute;
    top:0;
    left:0;
    z-index: 2;   
}
.top-hole, .bottom-hole {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    left: calc(50% - 12px);
}
.top-hole, .middle-hole, .bottom-hole {
    background-color: #FFFFFF;
    border: 2px solid black;
    position: absolute;
    box-shadow: inset 5px 5px 10px rgba(0,0,0,0.5), -2px -2px 3px #666666, 2px 2px 3px #FFFFFF;

}
.middle-hole {
    height: 60px;
    width: 30px;
    left: calc(50% - 15px);
    top: calc(50% - 30px);
}
#textTop, #textBottom {
    position: absolute;
    width: 310px;
    left: calc(50% - 155px);
    font-size: 2rem;
    color: #000000;
    color: #000000;
    text-shadow: -1px -1px 3px #666666, 1px 1px 3px #FFFFFF;
    z-index: 10;
    border: 1px solid rgba(0,0,0,0.0);
}
#textTop {
    top: 80px;
}
#textBottom {
    bottom: 80px;
}
.top-hole {
    top: 50px;
}
.bottom-hole {
    bottom: 50px;
}
#textTop:focus, #textBottom:focus {
    outline: none;
    border: 1px dotted #666666;
}

/* --- Font Picker --- */
#fontSelect {
    width: 400px;
}
.font01 {
    font-family: 'Oswald', sans-serif;
}
.font02 {
    font-family: 'Bakbak One', cursive;
}
.font03 {
    font-family: 'Pacifico', cursive;
}
.font04 {
    font-family: 'Roboto Slab', serif;
}

.font05 {
    font-family: 'Fuzzy Bubbles', cursive;
}

/* --- Color Picker --- */
.colorPicker {
    display: inline-block;
    width: 30px;
    height: 30px;
    padding: 5px;
    border: 1px solid #000000;
    border-radius: 50%;
}
.colorPicker.active {
    border: 5px double #FFFFFF;
}
.color01 {
    background-color: #000000;
}
.color02 {
    background-color: #FF0000;
}
.color03 {
    background-color: darkgreen;
}
.color04 {
    background-color: navy;
}
.color05 {
    background-color: darkmagenta;
}

/* --- Intro Page --- */