:root {
  /* ## Font */
  --Font-Family: "Raleway", sans-serif;
  --Font-Weight: 400;
  --Font-Weight-Bold: 700;


  /* ## Font Size */
  --Font-Size: 16px;
  --Font-Size-Large: 24px;
  --Font-Size-Small: 14px;

  /* ## Line Height */
  --Line-Height: 1.5;

  /* ## Spacing */
  --Spacing: 20px;
  --Spacing-Large: 40px;
  --Spacing-Small: 10px;

  /* ## Colors */
  /* ### Primary */
  --Gradient: linear-gradient(to right, hsl(6, 100%, 80%), hsl(335, 100%, 65%));

  /* ### Neutral */
  --White: hsl(0, 0%, 100%);
  --Off-White: hsl(0, 0%, 94%);
  --Pale-Blue: hsl(243, 100%, 93%);
  --Grayish-Blue: hsl(229, 7%, 55%);
  --Dark-Blue: hsl(228, 56%, 26%);
  --Very-Dark-Blue: hsl(229, 57%, 11%);
}

/* ## Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--Font-Family);
  font-weight: var(--Font-Weight);
  font-size: var(--Font-Size);
  line-height: var(--Line-Height);
  background-color: var(--Very-Dark-Blue);

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  background-image: url(../images/bg-desktop.png);
  background-repeat: no-repeat;
  background-position: 0 140%;
}

img {
  width: 100%;
}

.container {
  display: flex;
  justify-content: center;
  align-items: end;
  padding: var(--Spacing-Large) var(--Spacing);
  gap: var(--Spacing);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.card_bg {
  background-color: var(--Dark-Blue);
}

.fylo {
  width: 300px;
  padding: 30px;
  border-radius: 10px 80px 10px 10px;
}

.logo_container {
  width: 110px;
  margin-bottom: 20px;
}

.icons {
  display: flex;
  width: 140px;
  gap: 10px;
}

.icons button {
  background-color: var(--Very-Dark-Blue);
  padding: 10px;
  border: none;
  border-radius: 6px;
}

.storage {
  padding: var(--Spacing);
  border-radius: 10px;
  width: 500px;
  position: relative;
}

.storage p {
  font-size: 12px;
  color: var(--Pale-Blue);
  margin-bottom: var(--Spacing-Small);
}

.storage p span {
  font-weight: var(--Font-Weight-Bold);
  color: var(--Pale-Blue);
  font-size: 12px;
}

.storage_bar {
  width: 100%;
  height: 14px;
  background-color: var(--Very-Dark-Blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.progress_bar {
  width: 81.5%;
  background: var(--Gradient);
  height: 10px;
  border-radius: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: var(--White);
  border-radius: 50%;
  position: absolute;
  left: calc(81.5% - 22px);
}

.storage_capacity {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
}

.storage_capacity span {
  font-size: 12px;
  color: var(--Pale-Blue);
}

.left_gb {
  background-color: var(--White);
  position: absolute;
  top: -40px;
  right: 30px;
  padding: 10px 15px;
  border-radius: 6px 6px 0 6px;
  font-size: var(--Font-Size-Large);
  font-weight: var(--Font-Weight-Bold);
}

.left_gb span {
  font-size: var(--Font-Size-Small);
  font-weight: var(--Font-Weight);
  color: var(--Grayish-Blue);
}

.triangle {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-top: 10px solid var(--White);
  position: absolute;
  bottom: -10px;
  right: -5px;
  transform: translateX(-50%);
}

/* ## Media Queries */

/* ### Tablet Styles */
@media(max-width: 768px) {
  body {
    height: 100vh;
    background-position: 0 220%;
  }
}

/* ### Mobile Styles */
@media (max-width: 376px) {
  body {
    background-image: url(../images/bg-mobile.png);
    height: 100vh;
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .container {
    flex-direction: column;
    /* margin: 0 auto; */
    align-items: center;
    width: 300px;
  }

  .storage {
    width: 300px;
    height: 150px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .storage p {
    font-size: var(--Font-Size);
  }

  .left_gb {
    position: absolute;
    top: 115px;
    bottom: -40px;
    right: 50%;
    width: 60%;
    transform: translateX(50%);
    border-radius: 10px;
    /* padding: 10px 15px; */
    font-size: 35px;
  }

  .triangle {
    display: none;
  }
}