*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    
    cursor: url("../Assets/cursor.png"), auto;
}

:root {
    --primary: #E2E2E2;
    --secondary: #A3A4A6;
    --tertiary: #0C0D0D;
    --quartenary: #6E7985;
    --quinary: #595B5C;
    --screen: #AFB7BF;
}

body {
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    height: 100vh;
    overflow: hidden;
    
    background-image: url("../Assets/wallpaper.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#timer-div {  
    width: 100%;
    height: 139px;
     
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Press Start 2P', cursive;
}

#timer-title {
    font-size: 16px;
    position: relative;
    margin-bottom: 8px;
}

#timer {
    font-size: 35px;
    position: relative;
}

#glass-buttons-div {
    width: 220px;
    height: 160px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

#start-button, #stop-button, #config-button {
    font-family: 'Press Start 2P', cursive;
    font-size: 15px;
    width: 100%;
    height: 40px;
    border: 5px solid var(--tertiary);
}

#start-button {
    border-right: 0px;
    border-radius: 0 0 0 10px;
}

#config-button {
    width: 40px;
    height: 40px;
    border-left: 0px;
    border-radius: 0 0 10px 0;
    padding: 0 10px;
    position: relative;
}

#config-button img {
    width: 25px; 
    height: 25px;
    position: relative;
    top: 1px;
    left: -5px;
}

#start-button:hover, #stop-button:hover, #config-button:hover {
    background-color: var(--quinary);
}

#start-button:disabled:hover, #stop-button:disabled:hover,#config-button:disabled:hover {
    background-color: initial;
}

#config-button.active {
    background-color: var(--quinary);
}

#config-button:disabled img{
    opacity: 0.3;
}
.pokebox{
    display:flex;
    flex-direction: column;
    align-items: center;

}

.pokebox-head{
    width: 250px;
    height: 50px;

    margin: 0 40px;

    border-radius: 25px 25px 0 0;
    border: 5px solid var(--tertiary);
    
    border-bottom: none;

    overflow: hidden;
    position: relative;

    padding: 10px;
}

.pokebox-head img{
    width: 256px;
    height: 144px;

    position: relative;
    top: -120px;
    left: -10px;

    opacity: 0.8;
}

.pokebox-head h1{
    font-size: 25px;

    text-align: center;
    color: var(--primary);
    font-family: 'Press Start 2P', cursive;
    
    position: relative;
    z-index: 1;
    
}

.pokebox-body{
    width: 300px;
    height: 500px;

    z-index: 1;

    padding: 5px;    

    background-color: var(--primary);
    background-image: url("../Assets/box-grass.png");

    border-radius: 25px;
    box-shadow: inset -3px -3px rgb(0,0,0,0.5), inset 3px 3px rgb(256,256,256,0.8);
    border: 5px solid var(--tertiary);

    overflow: visible;
}

.pokebox-body .pokemon-icon-span{
    width: 15px;
    height: 15px;

    margin: 15px 7px;

    border-radius: 60%;

    background-color: rgb(0,0,0,0.4);
    background-image: none;
    position: relative;
}

.pokebox-body .pokemon-icon-span .pokemon-portrait-span{
    display: none;
}

.pokebox-body .pokemon-icon-span:hover .pokemon-portrait-span{
    display: initial;

    position: absolute;
    top: 25px;
    left: -25px;
    z-index: 5;

    width: 100px;
    height: 100px;

    background-position: center;
    background-color: var(--primary);
    border: 3px solid var(--tertiary);
    border-radius: 15px;
}

.configs-box {
    height: 100vh;
    width: 300px;
    
    background-color: rgb(0,0,0,0.4); 
    text-align: center;

    position: relative;
    display:flex;
    flex-direction: column;
    align-items: center;

    font-family: 'Roboto', sans-serif;
}

.configs-box h1{
    font-family: 'Press Start 2P', cursive;
    font-size: 30px;
    color: var(--primary);
    margin: 15px;
}

.configs-box .clock-configs {
    height: 120px;
    width: 90%;
    background-color: rgb(0,0,0,0.4); 

    padding: 10px;
    text-align: center;

    display:flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
}

.configs-box .clock-configs h5{
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 5px;
}

.configs-box .clock-configs div {
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.configs-box .clock-configs label {
    font-size: 15px;
    color: var(--primary);
    margin-right: 5px;
    overflow-x: hidden;
}

.configs-box .clock-configs input {
    height: 25px;
    width: 50px;
    border-radius: 3px;
    
    text-align: center;
}

.configs-box .clock-configs button {
    height: 25px;
    width: 50px;
    margin-top: 10px;

    border-radius: 3px;

    text-align: center;
    font-size: 15px;

}

.configs-box .music-configs {
    height: 300px;
    width: 90%;
    background-color: rgb(0,0,0,0.4); 

    padding: 10px;
    text-align: center;

    margin-top: 15px;

    display:flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;

    overflow: hidden;

}

.configs-box .footer {
    height: 35px;
    width: 100%;

    border-radius: 3px;

    font-size: 15px;

    display: flex;
    flex-direction: column;
    align-items: center;

    position: absolute;
    bottom: 70px;

    font-family: 'Roboto', sans-serif;
}

.configs-box .footer button {
    height: 35px;
    width: auto;
    margin-bottom: 5px;

    font-size: 20px;
    text-decoration: underline;

    color: var(--primary);
    background-color: transparent;
    border: none;
    font-weight: bold;
}

.configs-box .footer a{
    font-size: 20px;
    color: var(--primary);
    margin-right: 15px;
    margin-bottom: 10px;
}

.configs-box .footer button:hover, a:hover{
    text-decoration: none;
}

.configs-box .footer #coffee{
    display: flex;
    align-items: center;
    font-size: 15px;
}

.configs-box .footer #coffee img{
    width: 25px;
    height: 25px;
}

#faq-box-bg {
    display: none;
    position: absolute;

    z-index: 4;
    width: 100%;
    height: 100%;

    background-color: rgb(0, 0, 0, 0.5);
}


#faq-box {
    position: absolute;
    left: 25%;

    z-index: 5;
    width: 700px;
    height: 500px;

    background-color: rgba(34, 32, 32, 0.99);

    border: 6px solid var(--tertiary);
    border-radius: 15px;

    color: var(--primary);
    display: none;
    flex-direction: column;
    align-items: center;

    padding: 15px;

    font-family: 'Roboto', sans-serif;
}

#faq-box header {
    display: flex;
}

#faq-box header h2{
    margin-right: 30px;
}

#faq-box header button{
    background-color: transparent;
    color: var(--primary);
    border: none;


    font-size: 20px;
    font-weight: bold;

    position: absolute;
    right: 15px;
    top: 10px;
}


#faq-box header button:hover{
    color: var(--quinary);
}


#faq-box .text-div{

    padding: 15px;
    letter-spacing: normal;
    text-align: justify;

}

#faq-box .text-div p:last-child{
    margin: 30px 0;
}

#faq-box .text-div ul{
    margin: 0 30px 15px;
}

#faq-box .text-div img{
    width: 90px;
    height: 64px;

    position: absolute;
    left: 43%;
    bottom: 20px;
}

