*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    overflow-x: hidden;
}
.wrapper{
    width: 100vw;
    background-image: linear-gradient(#23739C 0%, #101B2C);
    min-height: 100vh;
}
.main{
    width: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.meter-heading{
    text-align: center;
    color: aliceblue;
    font-size: 1.5rem;
    font-family: Arial, Helvetica, sans-serif;
    text-shadow: 2px 2px 10px rgba(74, 73, 73, 0.5);

}
.meter-section{
    padding: 20px;
    width: 100%;
    display: flex;
    /* flex-wrap: wrap; */
    /* min-height: 90vh; */
    justify-content: space-around;
    align-items: center;
}
.meter{
    width: 40%;
    min-width: 300px;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}
.current-meter-value, .voltage-meter-value, .wattmeter-value{
    background-color: #1b3147;
    /* padding: 20px 59px; */
    font-size: 30px;
    width: 170px;
    height: 60px;
    position: absolute;
    left: 9%;
    top: 82%;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    color: white;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.301);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* transition: all 500ms linear; */
}
.main-scale {
    width: 250px;
    height: 250px;
    border:20px solid #FFF;
    border-bottom: 20px solid rgba(0, 0, 0, 0);
    border-radius: 50%;
    position: relative;
    box-sizing: border-box;
    
}
  .main-scale::before {
    content: "";
    position: absolute;
    box-sizing: border-box;
    inset:-21px;
    border-radius: 50%;
    border:20px solid #ff3c0000;
  }
.meter-label{
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.258);
    font-size: 18px;
}