/* overall body */
body {
  background-color: hsl(229, 57%, 11%);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-image: url('./images/bg-desktop.png') ;
  background-repeat:  no-repeat;
  background-size: cover;
}


.overall {
  display: flex;
  align-items: end;
  gap:19px;
}

/* flyo-card */

.fylo-card {
  background-color: hsl(228, 56%, 26%);
  padding: 32px;
  border-radius: 8px 80px 8px 8px;
  width: 280px;
}

.fylo-logo img {
  width: 150px;
 
}

.icons {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}

.icons button{
  background-color: hsl(229, 64%, 16%);
  padding:14px;
  border-radius: 10px;
}

.icons img {
  width: 15px;
}

/* storage card */

.storage-card {
  background-color: hsl(228, 56%, 26%);
  border-radius: 10px;
  padding: 32px;
  width: 500px;
  position: relative;
}

.storage-card p {
  font-size: 14px;
  color: hsl(243, 100%, 93%);
  margin-bottom: 16px;
}

.progress-bar progress{

    width: 500px;
    height: 30px;
}

.storage-info {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 13px;
}

.top-box {
  position: absolute;
  top: -50px;
  left: 360px;
  background-color: #fff;
  color: hsl(229, 57%, 11%);
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 10px;
}

.top-box h3 {
  font-size: 35px;
}

.top-box span {
  font-size: 12px;
  color: hsl(229, 7%, 55%);
}

@media (max-width: 768px) {
 
  .overall {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .fylo-card {
    width: 90%;
    border-radius: 10px;
  }

  .storage-card {
    width: 90%;
    margin-top: 16px;
  }

  .top-box {
    display: flex;
    top: 120px;
    left: 240px;
    width: 100px;
    
  }

}