/*
Author:  Leonard Garcia
All Rights Reserved
Created on February 10, 2025
*/
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body{
    background-color: black;
    color:  darkgreen;
}
::-webkit-scrollbar {
    width: 1.5em;
    height: 1em;
}

::-webkit-scrollbar-track {
  background-color: hsl(120 75% 50%/1);
  border-radius: 100vw;
  margin-block: 0.5em;
}

::-webkit-scrollbar-thumb {
  background: hsl(120 100% 20% / 1);
  border: 0.25em solid hsl(120 100% 20% / 1);
  border-radius: 100vw;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(120 100% 10% / 1);
}

ol {
    padding: 1.5em;
}
.container {
    display: grid;
    grid-template-columns: 100px 100px 100px 100px;
    grid-template-rows: auto;
    grid-template-areas: 
          "header header header header"
          "main main main main"
          "sidebar sidebar sidebar sidebar"
          "footer footer footer footer";
    column-gap: 15px;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    grid-column-gap: 6px;
    grid-row-gap:6px;
    margin-left: -1.8rem;
    margin-right: auto;
    margin-top: -3rem;
    justify-items: start;
}
.item-a {
    grid-area: header;
    align-self: center;
    margin-left: 6%;
    margin-top:  8%;
}
.item-b {
    grid-area: main;
    align-self: center;
    font-weight: 600;
    border: 1px gold;
    border-style: groove;
    padding: .5rem;
    width: fit-content;
    height: auto;
    margin-top: 1rem;
    margin-left: 3rem;
}
.item-c {
    
}
.item-d {
    grid-area: footer;
    align-self: center; 
}

.header2 {
    color: darkgreen;
    font-family: Harry p, Helvetica;
    font-size: 3.7em;
    font-weight: 600;
    text-shadow:#fff 0 -1px 4px, 
    #ff0 0 -2px 10px, #ff8000 0 -10px 20px, red 0 -18px 40px;
    width: 90%;
    margin-top:  1rem;
    margin-left: 40%;
    margin-bottom: 2rem;
}
#family {
    width: 50%;
}
#gramTheme {
    border: 8px #ff0;
    border-style: groove;
    border-radius: 5%;
    margin-left: 2rem;
}

#wizwel {
    border: 6px;
    border-color: goldenrod;
    border-radius: 6px;
    border-style: groove;
    margin-left: 2rem;
    margin-top: 4rem;
    margin-bottom: 1rem;
}
.ww {
    width:  320px; /*100% */
    height: 240px;
    margin: 0px 0px 5px 5px; /*top, right, bottom, left */
} 

.carousel {
  position: relative;
  width: 300px;     /* adjust as needed */
  height: 250px;    /* adjust as needed */
  overflow: hidden;
  margin: 3rem;
}

.carousel img {
  position: absolute;
  top: 0;
  left: 0;
  border: 4px;
  border-style:groove;
  border-color:#00C853;
  border-radius: 10%;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.carousel img.active {
  opacity: 1;
}

#gramMan {
    float: left;
    width: 3.5rem; height: 5rem;
    margin-right: 1rem;
    margin-top: -.8rem;
    margin-bottom: .5rem;
}
.iconic {
    float: left;
    width: 3rem; height: 3em;
    margin-right: 1rem;
    margin-top: -.5rem;
    margin-bottom: .5rem;
}
.iconicNoMod {
    /*float: left; */
    width: 15rem; height: 10rem;
    margin-right: 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

#except, #except2 {
    width: 2rem; height: 2rem;
    margin-top: .1rem;
}
#boxed1, #boxed2, #boxed3 {
    border: 4px;
    border-color: goldenrod;
    border-style: ridge;
    background-color: whitesmoke;
    color: black;
    border-radius: 2px;
    padding: 4px;
    width: fit-content;
}
.point {
    cursor: pointer;
}
.norm {
    background-image: url(../images/pmBack.jpg);
    background-color: lightgreen;
    color: black;
    font-size: 20px;
    font-weight: 600;
    border: 3px gold;
    border-style: groove;
    padding: 1rem;
}
.note {
    background-color: khaki;
    color: black;
    font-size: 20px;
    font-weight: 300;
    border: 3px silver;
    border-style: groove;
    padding: 1rem;
}
.note2 {
    background-color: black;
    color: white;
    font-size: 20px;
    font-weight: 300;
    border: 3px silver;
    border-style: groove;
    padding: 1rem;
}
span{
    color:red;
}

.dancing-script-uniquifier {
  font-family: "Dancing Script", serif;
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
}

.lacquer{
    font-family: "Lacquer", serif;
    font-weight: 400;
    font-style:oblique;
}

.boxDouble {
    background-image: url(../images/pmBack.jpg);
    background-color: white;
    color: darkgreen;
    font-weight: 600;
    border: 8px green;
    border-style: double;
    padding: 1rem;
    width: fit-content;
}
.board {
    background-color: white;
    font-family: serif; 
    font-weight: 600;
    border: 3px silver;
    border-style: groove;
    padding: 1rem; 
}
.roundBox {
    background-color: white;
    color: black;
    font-family: serif;
    font-size: 20px;
    font-weight: 600;
    border: 5px darkorchid;
    border-radius: 3rem;
    border-style: double;
    padding: 1rem; 
    width: fit-content;
}
#blkboard {
    color: black;
    font-size: larger;
}
#whtboard {
    color: black;
    font-size: larger;
}
#front1:hover {
    content: url(../images/participlesBack_01.jpg);
}
#front2:hover {
    content: url(../images/participlesBack_02.jpg);
}
#front3:hover {
    content: url(../images/participlesBack_03.jpg);
}

.AudBox {
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    background: #73AD21;
    padding: 20px;
    width: 300px;
    float:left;
    height: 50px;
    font-weight: 600;
    margin:0px 5px 0px 0px; /*top, right, bottom, left */
}
.textwrap {
    float: left;
    margin-top: -.7rem;
    margin-right: 5px;
}
p.convoNum {
    background-color: black;
    color:#2FD1CD;
    border: 3px;
    border-color:#fff;
    border-style:solid;
    font-size: 20px;
    width: fit-content;
    padding: .2rem;
    margin-left: 1rem;
    margin-top: 1rem;
}
.convo1 {
    width: auto;
    padding-right: 1rem; 
}
.convo2, .convo3, .convo4 {
    flex: 1 2 0;
    align-self: auto; 
    border: 6px;
    border-color: gold;
    border-radius: 10px;
    border-style: groove;
    background-color: navajowhite;
    color: darkgreen;
    padding-right: 1rem;
    margin: .5rem;
    width: fit-content;
}

.convo2:hover, .convo3:hover, .convo4:hover {
    background-color: #ff0;
    color: darkblue; 
    cursor: pointer; 
}  

#audbox {
    display: none;
}
.normal_blue {
    color:              black;
    background-color:   lightblue;
    font-family:        sans-serif;
    font-weight:        normal;        
    border:             6px;
    border-color:       silver;
    border-style:       ridge;
    border-radius:      4px;
    padding:            4px;
    width:              40vw;
    margin-left:        5px;
}
#hw {
    width:              fit-content;
}
#scene {
    display:            block;
    position:           relative;
    top:                10px;
    left:               50px;
}
#activate {
    display:            block;
    font-size:          medium;
    font-weight:        600;
    position:           relative;
    top:                10px;
    left:               50px;
    border:             4px; 
    border-color:       #3399ff;
    border-style:       groove;
    border-radius:      20px;
    padding:            .5rem;
    margin-bottom:      1rem;
    width:              fit-content;
}
#seq {
    
}
#gramIcon {
    display: block;
    cursor: pointer;
    width: fit-content;
    border-radius: 50%;
    padding:       4px;
    border: 5px solid yellow;
    margin-left: 3rem;
    opacity: .6;
}
#gramIcon:hover {
    opacity: 1;
}
#base {
    margin-left: 3rem;
    color: darkgreen;
}

#footer {
    background-color:black;
    color:white;
    text-align:center;
    padding:7px;
    margin-left: 35%;
}

/* For Smartphone ****************************************************/
/*********************************************************************
**********************************************************************/
@media only screen and (max-width : 425px) and (min-width: 280px) {
    .header2 {
        font-size: 2.2em;   
        margin-left: 15%;
    }
    #footer {
        margin-left: 25%;
    }
    
    .carousel {
        position: relative;
        width: 300px;     /* adjust as needed */
        height: 250px;    /* adjust as needed */
        overflow: hidden;
        margin: 1rem;
    }

    .norm {
        font-size: 14px;
        width: 95%;
    }
    .note {
        font-size: 14px;
        width: 90%;
    }
    .boxDouble {
        background-image: url(../images/pmBack.jpg);
        background-color: white;
        color: darkgreen;
        font-weight: 600;
        border: 8px green;
        border-style: double;
        padding: 1rem;
        width: 80%;
    }
    .board {
        background-color: white;
        font-family: serif; 
        font-weight: 600;
        border: 3px silver;
        border-style: groove;
        padding: 1rem; 
        width: 80%;
    }
    .roundBox {
        font-size: 14px;
        width: 80%;
    }
    .convo1 {
        width: auto;
    }
    .convo2 {
        flex: 1 2 0;
        align-self: auto; 
        border: 6px;
        border-color: gold;
        border-radius: 10px;
        border-style: groove;
        background-color: navajowhite;
        color: darkgreen;
        padding: 5px;
        margin: .5rem;
        width: fit-content;
    }
    .convo3 {
        flex: 1 2 0;
        align-self: auto; 
        border: 6px;
        border-color: gold;
        border-radius: 10px;
        border-style: groove;
        background-color: navajowhite;
        color: darkgreen;
        padding: 5px;
        margin: .5rem;
        width: fit-content;
    }
    .tablePic {
        /*float: left;  */
        margin-left: -.5rem;
        margin-right: 1rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    
    #family {
        width: 80%;
    }
    #gramTheme {
        border: 8px #ff0;
        border-style: groove;
        border-radius: 5%;
        margin-left: 1rem;
        width: 90%;
    }
    #teacher {
        max-width: 280px;
    }
    #front1, #front2, #front3 {
        width: 70%;
    }
    #boxed1, #boxed2, #boxed3 {
        font-size: 1rem;
        width: fit-content;
    }
}    
 


