/*
Author:  Leonard Garcia
All Rights Reserved
Created on
*/
/* 
    Created on : Aug 11, 2023, 8:48:02 PM
    Author     : Leonard Garcia <your.name at your.org>
*/

body{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
body {
    height:100%; /* helps make height 100% */
    font:100%/1.5 Arial, Helvetica, sans-serif; /* 100% = 16px, 93.75% = 15px, 87.5% = 14px, 81.25% = 13px, 75% = 12px - font-size in % prevents IE's resize bug */
    background: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);
}

.unselectable {
  -webkit-user-select: none;  /* Chrome all / Safari all */
  -moz-user-select: none;     /* Firefox all */
  -ms-user-select: none;      /* IE 10+ */
  user-select: none;          /* Likely future */       
}

.container {
    display: grid;
    grid-template-columns: 400px 1200px;
    grid-template-rows: auto;
    grid-template-areas: 
          "header header header header"
          "main main main main"
          "footer footer footer footer";
    column-gap: 15px;
    grid-gap: 15px; 
    margin-top: 5%;
    margin-left: 10px;
    margin-right: 10px;
}

.header2 {
    color: darkgreen;
    font-family: Harry p, Helvetica;
    font-size: 3.1em;
    font-weight: 600;
    text-shadow:#fff 0 -1px 4px, 
    #ff0 0 -2px 10px, #ff8000 0 -10px 20px, red 0 -18px 40px;
}
.headShot {
    margin-top: 5%;
    margin-left: 32%;
}
#svaShot{
    margin-top:  8%;
}
#svaHead 
{
    position: absolute;
    top:    5px;
    left:   30%;
}
#theme {
    width: 80%; height: 35vh;
    margin-top: -2rem;
    margin-left: -10rem;
}
.item-a {
    grid-area: header;
    align-self: center;
    margin-top: 1.5rem;
    margin-left: 0;
}
.item-b {
    grid-area: main;
    align-self: center;
    background-color: lightgreen;
    color: darkgreen;
    font-size: 1.3em;
    font-weight: 400;
    border: 5px gold;
    border-style: groove;
    padding: .5rem;
    margin-left: 20px;
    width: fit-content;
}
.item-c {
    
}
.item-d {
    grid-area: footer;
    align-self: center; 
}

/* Style that first letter! */
.first-letter {
  font-size: 35px;
  line-height: 70px;
}
h4 {
    margin-top: 5rem;
}
div {
    color: black;
}
p {
    color: black;
    font-weight: 400;
}
 h5 {
    font-weight: 600;
    margin-top: 5rem;
}

#duo2{
    height: 12.65rem;
}
#marbles {
    height: 9.65rem;
}
#action {
    background-color: gold;
    color: black;
    border: 4px;
    border-style: ridge;
    padding: .5rem;
    width: fit-content;
}
#rule1 {
    display: none;
}
#rule2 {
    font-size: 1.4rem;
}
.flow {
    float: left;
    margin: 10px;
    margin-left: 1rem;
}

.list {
    background-color:beige;
    background-image: url("../images/old_paper.jpg");
    color:#121E31;
    border: 4px;
    border-color:#3d91b8;
    border-style:double;
    width: fit-content;
    padding: .5rem;
    margin-top: .5rem;
}
#rollA {
    
}

.iconic {
    float: left;
    width: 3rem; height: 3em;
    margin-right: 1rem;
    margin-top: -.5rem;
    margin-bottom: .5rem;
}
.convo1 {
    width: auto;
}
.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-left:  .3rem;
    padding-right: 1rem;
    margin: .5rem;
    width: fit-content;
}
#audbox {
    display: none;
}
#noform {
    opacity: .3;
}
a:link { text-decoration: none;
    margin-left: 100px; 
}   

a:visited { text-decoration: none; }
a:hover { text-decoration: none; }
a:active { text-decoration: 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:            8px;
    width:              fit-content;
    margin-left:        2.5rem;
}
#noform::hover{
    opacity: 1;
}
.imgPrompts{
    width: 16%; height: 16%;
}
#hw{
    width: 370px;
}
#gramIcon {
    display: block;
    cursor: pointer;
    width: fit-content;
    border-radius: 50%;
    padding:       4px;
    border: 5px solid yellow;
    margin-top:  1rem;
    margin-left: 2rem;
    opacity: .8;
}
#gramIcon:hover {
    opacity: 1;
}
#base {
    color: darkgreen;
    margin-left: 2rem;
    margin-top:  1rem;
}

#footer {
    position: relative;
    top: 90px;
    background-color:black;
    color:white;
    clear:both;
    text-align:center;
    padding:7px;
}

/***************************************************************************/
/***********************Laptop******************************************/
/***************************************************************************/

@media only screen and (max-width : 1366px) and (min-width: 768px) {
     body {
      width: 90%;
    }
    #theme {
        width: 60%; height: 35vh;
        margin-left: -20rem;
    }
    .item-b {
        grid-area: main;
        align-self: center;
        background-color: lightgreen;
        color: darkgreen;
        font-size: 1.1rem;
        font-weight: 400;
        border: 5px gold;
        border-style: groove;
        padding: .5rem;
        margin-left: 20px;
        width: 100%;
    }
    
}
    
/***************************************************************************/
/***********************Smartphone******************************************/
/***************************************************************************/

@media only screen and (max-width : 414px) and (min-width: 280px) {

    body {
      width: 90%;
    }
     #theme {
        width: 30%; height: 35vh;
        margin-top: -1rem;
        margin-left: -25rem;
    }
    .header2 {
        font-size: 2.1rem;
        margin-top: 20px;
        margin-left: -45px;
        margin-bottom: 2.5rem;
    }
    .item-a {
        grid-area: header;
        align-self:center;
        margin-left: -370px;
        margin-top: 6rem;
        width: 25%;
    }
    .item-b {
        max-width: 20%;
        font-size: 1.2rem;
    }    
    h5{
        font-weight: 600;
        margin-top: -1rem;
    }
    h4{
        font-weight: 600;
        margin-top: 1rem;
    }
    .normal_blue {
        width:        170px;
        margin-left:  2.5rem;
    }
    
    .imgPrompts{
        width: 30%; height: 30%;
    }
    #hw{
        width: 200px;
        margin-left: 1.3rem;
    }
    .flow{
        width:         7.5rem;
        height:        6.5rem;
        margin-left:   .5rem;
        margin-bottom: .5rem;
    }
    .pic {
        width:         7rem;
        height:        8.65rem;
    }
    #duo1{
        height: 8.65rem;
    }
    #duo2{
        height: 8.65rem;
    }
    
    
    #hw{
        width: 215px;
    }
    
    #footer {
        width: 240px;
        padding:5px;
        margin-top: -40px;
        margin-left: 20%;
    }
    
}
