/*
Author:  Leonard Garcia
All Rights Reserved
Created on : Apr 12, 2024
*/
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
    background-color: black;
}
::-webkit-scrollbar {
    width: 1.2em;
    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);
}

/*************************************SKYPE AD**************************************/
/***********************************DESKTOP****************************************/
/**********************************************************************************/
h1{color:darkgreen;font-size:40pt;font-weight:bold;font-family:"Tahoma"}
p{color:silver;font-size:12pt;font-weight:normal;font-family:"Verdana", "serif"}
#pc{
    border-color:black;
    border-radius: 25px;
    position: absolute; top: 15px; left: 390px;
    margin-bottom:      15px;
    box-shadow: 0px 1px 40px 0px rgba(73,172,119,0.9);
}
#tab {
    display: none;
}
#cell {
    display: none;
}


.theme {
    /* visibility: visible; */
    position: absolute;
    border: 4px;
    border-style: solid;
    border-radius: 10%;
    margin-top: -1rem;
    margin-left: 1%;
    width: 45%;     
    height: 45%;
}

.container {
    display: inline-block;
    position: relative;
    top: 20rem;
    left: 25rem;
}
/* Styling the select element */
select {
  font-family: Arial, sans-serif;
  color: yellow;
  background-color: darkgreen;  
  border: 4px solid yellow;
  border-radius: 5px;
  padding: 5px;
  width: 150px;
  height: 36px;
  cursor: pointer;
}

/* Styling the options within the select element */
option {
  font-family: Arial, sans-serif;
  font-weight: 600;
  color: black;
  background-color: lightgreen;
}

/* Styling the select element when it's hovered */
select:hover {
  border-color: darkred; 
}

/* Styling the select element when it's focused */
select:focus {
  outline: none;
  border-color: yellow;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}


#home2 {
    position: relative;
    top: 38rem;
    left: -40rem;
    border:6px;
    border-color:#C4305F;
    border-style:solid;
    border-radius: 10%;
}
#footer {
    color:white;
    text-align:center;
    padding:5px;
    position: relative;
    left: -22rem;
    top: 45rem;
    width: fit-content;
}

/******************************************************************************/
/****************************LAPTOP Wide***************************************/
/******************************************************************************/
@media only screen and (max-width : 1366px) and (min-width: 1030px) {
    
    #pc{
        border-color:black;
        border-radius: 25px;
        position: absolute; top: 15px; left: 390px;
        margin-bottom:      15px;
    }
    
    #footer {
        color:white;
        text-align:center;
        padding:5px;
        position: relative;
        left: 42%;
        top: 35rem;
        width: fit-content;
    }
}   

/******************************************************************************/
/****************************LAPTOP Normal************************************/
/******************************************************************************/
@media only screen and (max-width : 1029px) and (min-width: 768px) {
   
    #pc{
        display: block;
        position: absolute; top: 5px; left: 250px;
    }
}

/**********************************************************************/
/**************************TABLET**************************************/
/*********************************************************************/
@media (min-width: 768px) and (max-width: 1024px){
    #pc{
        display: none;
    }
    #tab {
        display: block;
        position: relative;
        left: 70px;
        border-radius: 25px;
        box-shadow: 0px 1px 10px 0px rgba(73,172,119,0.9);
    }
    #cell {
        display: none;
    }
    
    .container {
        display: inline-block;
        position: relative;
        top: 5rem;
        left: 5rem;
    }
}

/***********************************************************************/
/***************************** SMARTPHONE******************************/
/**********************************************************************/
@media only screen and (max-width: 414px) and (min-width: 240px) {
    .theme {
    /* visibility: visible; */
        position: absolute;
        border: 4px;
        border-style: solid;
        border-radius: 10%;
        margin-top: -5rem;
        margin-left: 25%;
        width: 75%;     
        height: 25%;
    }
    
    #pc{
        display: none;
    }
    #tab {
        display: none;
    }
    #cell {
        display: block;
        width: 50%;
        position: relative; top: 8px; left: 56px;
        margin-bottom: 1px;
        border-radius: 25px;
        box-shadow: 0px 1px 20px 0px rgba(73,172,119,0.9);
        width: 75%; height: 12rem;
    }
    option {
        font-size: 13px;   
    }
    .container {
        display: inline-block;
        position: relative;
        top: 5rem;
        left: 3rem;
    }
    
    #home2 {
        position: relative;
        top: 36rem;
        left: -10rem;
        border:4px;
        border-color:#C4305F;
        border-style:solid;
        border-radius: 10%;
        width: 5rem;
    }
    #footer {
        color:white;
        font-size: 14px;
        text-align: center;
        padding:  10px;
        position: relative;
        left: -15rem;
        top: 44rem;
        width: 300px;
    }
}

