body {
  margin: 0;
  height: 100vh;
  background: linear-gradient(-45deg, #ff0000, #ff9900);
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  justify-content: space-around;
  
}

a {
    text-decoration: none;
    color: white;
}
.power-btn {
    /* background-color: #ff0000; */
    width: fit-content;
    border-radius: 100%;
    padding: 30px;
    margin: auto;
    /* color: white;
    box-shadow:
    0 0 120px 50px rgba(255, 30, 30, 0.9),
    0 0 250px 120px rgba(255, 60, 60, 0.6),
    0 0 400px 200px rgba(255, 80, 80, 0.3); */
    
}
.power-btn>div{
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: white; */
    border-radius: 100%;
    border: 10px solid white;
}
.pwr-off{
    background-color: #ff0000;
    color: white;
    box-shadow:
    0 0 120px 50px rgba(255, 30, 30, 0.9),
    0 0 250px 120px rgba(255, 60, 60, 0.6),
    0 0 400px 200px rgba(255, 80, 80, 0.3);
}
.pwr-off>div{
    background-color: #8B0000;
}
.pwr-on{
    background-color: #00ff00;
    color: #006400;
    box-shadow:
    0 0 100px 40px rgba(0, 255, 0, 0.7),
    0 0 200px 80px rgba(0, 255, 0, 0.4);
}
.pwr-on>div{
    background-color: white;
}


.font-60 {
    font-size: 60px;
}



.subsc {
    font-size: 24px;
}

.act-btc {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.action-btn {
    /* padding-top: 4px;
    padding-bottom: 4px; */
    padding: 16px;
    
    cursor: pointer;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #23292b80;
    /* opacity: 0.5; */
    /* padding-left: 4px;
    padding-right: 4px; */
}

