/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
@font-face {
  font-family: iosFonts;
  src: url("../media/fonts/SF Pro Display/SFPRODISPLAYREGULAR.OTF");
}

@font-face {
  font-family: iosFonts;
  src: url("../media/fonts/SF Pro Display/SFPRODISPLAYMEDIUM.OTF");
  font-weight: bold;
}

html,
body {
  overflow-x: hidden;
  height: 100%;
  width: 100%;
}

body {
  background-color: black;
  color: white;
  font-family: iosFonts;

  padding: 0;
  margin: 0;

  /*
  background-image: url("../media/photos/unforgotten-mountain.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  */

  display: flex;
  flex-direction: column;
}

.backdrop {
  position: absolute;
  inset: 0;
  height: 100%;
  border-radius: 4px;
  background: hsl(0deg 0% 100% / 0.1);
  pointer-events: none;
  backdrop-filter: blur(16dpx);
  mask-image: linear-gradient(to bottom, black 0, black 50%, transparent 50%);
}

.header {
  margin: 0;
  padding-top: 2%;

  backdrop-filter: blur(20px);

  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.status-bar {
  width: 100%;
  padding-bottom: 2%;
  padding-left: 5%;
  margin-top: 0;

  display: flex;
  align-self: flex-start;
  align-items: center;
}

.status-bar-icons {
  width: fit-content;
  margin-right: 8%;
  margin-top: 0;

  display: flex;
  position: absolute;
  right: 0;
}

.cell-signal-bars {
  padding: 0;
  margin: 5%;

  width: auto;
  height: 5vw;
  max-height: 35px;
}

.wifi-status {
  padding: 0;
  margin: 5%;
  width: auto;
  height: 4vw;
  max-height: 25px;
}

.battery-charging-icon {
  padding: 0;
  margin: 5%;
  width: auto;
  height: 4vw;
  max-height: 25px;
}

.time {
  font-size: min(4vw, 35px);
  font-weight: bold;
  margin: 0;
  padding-left: 4%;
}

.profile-photo {
  width: 100%;

  display: flex;
  flex-direction: row;
  justify-content: center;
  position: relative;
  align-items: center;
}

.profile-return-bracket {
  filter: invert(40%) sepia(95%) saturate(2997%) hue-rotate(196deg)
    brightness(101%) contrast(101%);
  padding: 0;
  margin-left: 2vh;

  width: 6vw;
  max-width: 50px;
  height: auto;
  transform: scaleX(-1) scaleY(2);

  display: flex;
  position: absolute;
  left: 0;
}

.pfp-icon {
  display: flex;
}

.pfp-icon img {
  width: 20vw;
  max-width: 150px;
  height: 20vw;
  max-height: 150px;

  border-radius: 50%;
  vertical-align: top;
}

.profile-name {
  display: flex;
}

.profile-name p {
  padding: 0;
  padding-top: 4%;
  padding-bottom: 8%;
  margin: 0;
  font-size: min(3.5vw, 27px);
  padding-right: 1vh;
}

.pfp-name-bracket {
  filter: invert(40%);
  width: 2.5vw;
  max-width: 18px;
  height: auto;
  transform: scaleY(2);
}

.qualia {
  /*color: #1086ff;*/
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.edits {
  margin-left: 3%;
  font-size: 3%;
  margin-bottom: 5%;

  display: flex;
  flex-grow: 1;
  align-items: flex-start;
  flex-direction: column;
}

.edits-button {
  background-color: transparent;
  border: none;
}

.edits-button-image {
  width: auto;
  height: 11vw;
  max-height: 80px;
}

.clips {
  display: flex;
  flex-grow: 1;
  align-items: flex-end;
  flex-direction: column;
}

.clips img {
  margin: 3%;
  margin-left: 0;

  height: auto;
  width: 60vw;
  max-width: 600px;
  border-radius: 8px;
}

.graphics {
  margin-right: 3%;

  display: flex;
  flex-grow: 1;
  align-items: flex-end;
  flex-direction: column;
}

.graphics p {
  font-size: min(3vw, 25px);
  margin: 0;
  padding: 0;
  margin-right: 3.5vh;

  color: #69696e;
}

.graphics b {
  color: #8d8c93;
}

.graphics-button {
  background-color: transparent;
  border: none;
}

.graphics-button-image {
  width: auto;
  height: 11vw;
  max-height: 80px;
}

.designs {
  display: flex;
  flex-direction: column;
}

.designs a {
  margin: 3%;
  margin-right: 0;
  padding: 0;
}

.designs img {
  margin: 0;
  padding: 0;

  height: auto;
  width: 55vw;
  max-width: 400px;
  border-radius: 8px;
}

.quale {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: flex-end;
}
