*{
box-sizing: border-box;
font-family: 'Franklin Gothic Medium', Arial, sans-serif;
}

body{
    background:linear-gradient(90deg, rgb(234, 7, 173) 0%, rgb(212, 9, 252) 35%, rgba(0,212,255,1) 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 100px;
}

#app{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;    
}

.counter-card {
  background-color: rgba(255, 255, 255, 0.85);
  border: 2px solid black;
  border-radius: 15px;
  padding: 20px;
  margin: 20px auto;
  width: 250px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  position: relative;
}

.input-field{
    background-color:rgb(228, 234, 235, 0.75);
    font-size: 1rem;
    text-align: center;
    margin-bottom: 20px;
    border: 2px solid black;
    border-radius: 10px;
    padding: 5px;
}

h1{
    font-size: 3rem;
    margin-bottom: 20px;
}

.btn{
    cursor: pointer;
    margin: 10px;
    height:50px;
    width: 50px;
    border-radius: 10px;
    background: rgb(228, 234, 235, 0.75);
    border: 2px solid black;
    font-size: 2rem;;
}

.remove-btn{
    cursor: pointer;
    height:30px;
    width: 30px;
    border-radius: 50px;
    font-size: 1rem; 
    position:absolute;
    bottom: 5px;
    right: 5px;
    background: rgb(228, 234, 235, 0.75);
    border: 2px solid rgb(234, 7, 173);
    color: rgb(234, 7, 173);    
}

.theme-btn{
    cursor: pointer;
    position: absolute;
    top: 20px;
    left: 20px;
    margin: 0;
    padding: 10px;
    border-radius: 50px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 2px solid black;
    color: black;
}

.add-counter-btn{
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    margin: 0;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px solid white;
    color: white;
}

/* DARK THEME */

.dark-theme .counter-card {
  background-color: rgb(37, 36, 36, 0.85);
  border: 2px solid rgb(150, 149, 149);
  color: rgb(150, 149, 149);
}

.dark-theme .input-field{
    background-color: rgb(37, 36, 36);
    border: 2px solid rgb(150, 149, 149); 
    color: rgb(150, 149, 149); 
}

.dark-theme .btn{
    background-color: rgb(37, 36, 36);
    border: 2px solid rgb(150, 149, 149); 
    color: rgb(150, 149, 149);
}

.dark-theme .remove-btn{
    background-color: rgb(37, 36, 36);
    border: 2px solid rgb(150, 149, 149); 
    color: rgb(150, 149, 149);
}

.dark-theme .theme-btn{
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px solid white;
    color: white;
}

.dark-theme .add-counter-btn{
    background-color: rgba(0, 0, 0, 0.3);
    border: 2px solid black;
    color: black;
}


