@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@700;400&display=swap");

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: hsl(229, 57%, 11%);
    background-image: url("https://res.cloudinary.com/dsw536m3y/image/upload/v1748839775/bg-desktop_hjsfhp.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position-y: 400px;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    
}

.container-1{
    background-color: hsl(228, 56%, 26%);
    display: flex;
    flex-direction: column;
    margin: 30px;
    padding: 40px 100px 40px 20px; 
    border-radius: 10px 80px 10px 10px;
}

.logo-img{
    width: 150px;
    padding: 0 0 20px 20px;
}

.icons-container{
    display: flex;
    flex-direction: row;
}

.each-icon-con{
    background-color: hsl(229, 57%, 11%);
    margin: 10px 10px 0 10px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.icon-img{
    width: 20px;
    margin: 5px;
}

.right-containers{
    font-family: 'Raleway';
    display: flex;
    flex-direction: column;
}

.container-2{
    background-color: hsl(228, 56%, 26%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

.container-3{
    background-color: white;
    padding: 10px;
    margin-left: 270px;
    position: absolute;
    top: 300px;
    border-radius: 10px 10px 0px 10px;
}

.tail {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-top: 30px solid white;
  position: absolute;
  bottom: -20px;
  right: 0px;
}


.bar{
    background-color: hsl(229, 57%, 11%);
    width: 400px;
    margin: 20px 0;
    border-radius: 50px;
    display: flex;
    align-items: center;
}

.bar-color{
    
    background-image: linear-gradient(hsl(6, 100%, 80%), hsl(335, 100%, 65%));
    width: 80%;
    height: 10px;
    margin: 2px;
    border-radius: 50px;
    display: flex;
    justify-content: end;
}

.bar-dot{
    background-color: white;
    width: 10px;
    height: 100%;
    border-radius: 100px;
}
.datalimit {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.min-data, .max-data {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 14px;
}

.left-data-text{
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
}

span{
    
    font-weight: 700;
    font-size: 16px;
}

.span-left{
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: xx-large;
}

@media (max-width: 768px) {
  body {
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }

  .container-1 {
    padding: 20px 80px;
    margin: 10px 0;
  }

  .container-2,
  .container-3 {
    position: static;
    margin-left: 0px;
    width: 100%;
  }

  .bar {
    width: 100%;
  }
}
