/* Global Style */
:root{
  --Blue200: hsl(243, 100%, 93%);
  --GrayishBlue: hsl(229, 7%, 55%);
  --Blue850: hsl(228, 56%, 26%);
  --Blue950: hsl(229, 57%, 11%);
  --gradient1: hsl(6, 100%, 80%);
  --gradient2: hsl(335, 100%, 65%);
}
*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: Raleway, Arial, Helvetica, sans-serif;
}
body{
  background: url(../images/bg-desktop.png) bottom var(--Blue950) no-repeat;
  background-size: 100% 52%;
}
@media(max-width: 768px){
  body{
    background: url(../images/bg-mobile.png) no-repeat;
    background-size: 100% 100%;
  }
}
/* Page Style */
.container{
  width: 60%;
  margin-inline: auto;
  margin-top: 16rem;
}
@media(max-width: 768px){
  .container{
    width: 90%;
    height: 560px;  
  }
}
.content{
  width: 100%;
  display: flex;
  justify-content: space-around;
  gap: 1%;
  height: 58vh;
}
@media(max-width: 768px){
  .content{
    flex-direction: column;
  }
}
.fylo{
  display: flex;
  flex-direction: column;
  background-color: var(--Blue850);
  width: 35%;
  height: 10rem;
  margin-top: -2rem;
  border-radius: 0.625rem 5rem 0.625rem 0.625rem;
  gap: 1.25rem;
}
@media(max-width: 768px){
  .fylo{
    width: 90%;
    margin-inline: auto;
    margin-top: -50%;
  }
}
.fylo .logo{
  margin-top: 2rem;
  margin-left: 2rem;
}
.fylo .logo img{
  width: 45%;
}
.fylo .icons{
  margin-left: 2rem;
  display: inline-flex;
  gap: 1rem;
  align-items: center;
}
.fylo .icons div{
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--Blue950);
  border-radius: 0.5rem;
}
.fylo .icons div img{
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.storage{
  width: 63%;
  height: 10rem;
}
@media(max-width: 768px){
  .storage{
    width: 100%;
    margin-top: -100%;
  }
}
.storage .gb-left{
  position: relative;
  width: 30%;
  height: 3.5rem;
  background-color: var(--Blue200);
  border-radius: 0.625rem;
  right: -100%;
  top: -30%;
  transform: translate(-140%,40%);
}
@media(max-width: 768px){
  .storage .gb-left{
    top: 70%;
    width: 50%;
    transform: translate(-153%,45%);
  }
}
.storage .gb-left::after{
  content: "";
  border: 2rem solid;
  position: absolute;
  border-color: transparent var(--Blue200) transparent transparent;
  right: 0;
  top: 1.45rem;
}
@media(max-width: 768px){
  .storage .gb-left::after{
    visibility: hidden;
  }
}
.storage .gb-left p{
  text-align: center;
  padding-top:0.5rem ;
  color: var(--GrayishBlue);
  text-transform: uppercase;
  font-size: xx-small;
}
.storage .gb-left p span{
  font-weight: 700;
  color: var(--Blue950);
  font-size: xx-large;
  padding-right: 0.25rem;
}
.storage .main{
  height: 7rem;
  width: 90%;
  margin-inline: auto;
  background-color: var(--Blue850);
  margin-top: -2.5rem;
  border-radius: 0.625rem;
  color: var(--Blue200);
}
@media(max-width: 768px){
  .storage .main{
    height: 10rem;
  }
}
.storage .main p,
.storage .main .bar{
  width: 85%;
  margin-inline: auto;
  padding-block: 1.5rem;
  font-size: 0.825rem;
}
.storage .main p span{
  color: white;
  font-weight: bold;
}
.storage .main .bar{
  width: 85%;
  height: 0.75rem;
  border-radius: 0.5rem;
  background-color: var(--Blue950);
  padding-block: 0;
  position: relative;
}
.storage .main .bar::before{
  content: "0 GB";
  position: absolute;
  top: 1rem;
  font-weight: 700;
  left: -1%;
}
.storage .main .bar::after{
  content: "1000 GB";
  position: absolute;
  right: 0;
  top: 1rem;
  font-weight: 700;
}
.storage .main .bar .gradient{
  width: 81.5%;
  height: 0.75rem;
  background-image: linear-gradient(to right,var(--gradient1),var(--gradient2));
  border-radius: 0.5rem;
  position: relative;
}
.storage .main .bar .gradient::after{
  content: "";
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--Blue200);
  right: 0.0625rem;
}
