<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,400;0,500;1,400;1,500&amp;display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  width: 100%;
  background-color: hsl(229, 57%, 11%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Raleway", sans-serif;
}

main {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

main &gt; div {
  margin: 0 20px;
}

.fylo--container,
.range--container {
  background-color: hsl(228, 56%, 26%);
  padding: 20px;
  border-radius: 5px;
}

.fylo--container {
  height: 145px;
  width: 250px;
  border-top-right-radius: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.fylo--container &gt; :first-child {
  width: 100px;
}

.fylo--container &gt; :first-child &gt; img {
  width: 100%;
}

.range--container {
  height: auto;
  width: 400px;
  color: hsl(243, 100%, 93%);
}

.doc--section {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.doc--section :nth-child(2) {
  margin: 0 10px;
}

.doc--section &gt; figure {
  background-color: hsl(229, 57%, 11%);
  padding: 5px;
  border-radius: 2px;
  cursor: pointer;
}

.range--slider--container {
  width: 100%;
  background-color: hsl(229, 57%, 11%);
  height: 15px;
  margin: 10px 0;
  border-radius: 50px;
}

.range {
  /* width: 60%; */
  background: linear-gradient(
    to bottom right,
    hsl(6, 100%, 80%),
    hsl(335, 100%, 65%)
  );
  height: 100%;
  border-radius: 50px;
  position: relative;
  transition: width 0.5s ease-in-out;
}

.tip {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: white;
  border-radius: 100%;
  width: 15px;
  height: 15px;
}

.space--container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-weight: 700;
}

span {
  color: white;
  font-weight: 700;
}

.data--counter--container {
  background-color: white;
  padding: 10px 15px;
  color: hsl(243, 100%, 93%);
  font-size: 12px;
  font-weight: 700;
  border-radius: 5px;
  position: absolute;
  right: 20px;
  top: 0;
}

.data--counter--container::before {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-left: 20px solid white;
  border-bottom: 20px solid white;
  border-right: 20px solid transparent;
  transform: rotate(45deg) translateX(-5px) translateY(-5px);
}

.data-storage {
  display: flex;
  justify-content: center;
  align-items: center;
}

.data-storage &gt; span {
  color: black;
  font-size: 25px;
  padding-right: 8px;
}

footer {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 14px;
  color: yellow;
  font-weight: 700;
}

footer a {
  color: red;
  text-decoration: none;
}

@media (max-width: 500px) and (orientation: portrait) {
  main {
    flex-direction: column;
  }

  .fylo--container,
  .range--container {
    width: 320px;
    margin: 10px 0;
    padding: 50px 20px;
  }

  .data--counter--container {
    bottom: 0;
    top: unset;
  }

  .data--counter--container::before {
    border-top: 0px solid transparent;
    border-left: 0px solid white;
    border-bottom: 0px solid white;
    border-right: 0px solid transparent;
  }
}
</pre></body></html>