@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  margin: 0;
  background: white;
  font-size: 18px;
  display: grid;
  grid-template-rows: 3em 1fr 3em;
  overflow: hidden;
}

#topPanel, #appControls {
  background: #fff;
  display: flex;
  align-items: center;
  background: #fff;
}

#topPanel {
  padding: 1em;
  font-size: 1.5em;
  justify-content: space-between;
}

#app {
  height: calc(100vh - 6em);
  overflow: scroll;
}

#appControls {
  justify-content: space-evenly;
}
#appControls a {
  height: 32px;
  width: 32px;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}

.container {
  display: flex;
  flex-flow: column;
  padding: 1em;
  gap: 2em;
}

.fullscreen {
  height: calc(100vh - 8em);
}

.image {
  z-index: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-flow: column-reverse;
}

.userHeader {
  background: #000000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
  color: #fff;
  padding: 2em 2em 1em 2em;
  border-radius: 0 0 1em 1em;
}
.userHeader .wrap {
  display: flex;
  align-items: center;
  gap: 0.25em;
  font-size: 2em;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5333333333);
}

#userCity {
  font-size: 1.25em;
  font-style: oblique;
}
#userCity::before {
  content: "📍";
  margin-right: 0.5em;
}

#userName::after {
  content: ",";
}

#userAge {
  font-style: oblique;
}

.card {
  box-shadow: 2px 2px 10px 6px rgba(0, 0, 0, 0.2666666667);
  border-radius: 1em;
}

.userArchetype {
  padding: 1em;
  border-radius: 1em;
  font-style: italic;
  display: flex;
  flex-flow: column;
  gap: 1em;
}

#archetype {
  font-size: 2em;
}

.flex-even {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.controls {
  display: flex;
  flex-flow: column;
  gap: 5em;
  padding: 2em 0 1em 0;
}
.controls .button {
  display: block;
  height: 64px;
  width: 64px;
  background-position: center;
  background-repeat: no-repeat;
}

.userInfo {
  padding: 0.5em;
  display: flex;
}

.female::before {
  content: "♀️";
  margin-right: 0.2em;
}

.male::before {
  content: "♂️";
  margin-right: 0.2em;
}

#userHeight::before {
  content: "📏";
  margin-right: 0.2em;
}
#userHeight::after {
  content: "cm";
}

#score {
  font-size: 4em;
}
#score::after {
  content: "%";
}

#yesButton {
  background-image: url("./icons/chat.png");
}

#noButton {
  background-image: url("./icons/decline.png");
}

#profile {
  background-image: url("./icons/profile.png");
}

#messages {
  background-image: url("./icons/messages.png");
}

#likes {
  background-image: url("./icons/heart.png");
}

#filter {
  background-image: url("./icons/control.png");
  height: 32px;
  width: 32px;
}

#reportButton {
  display: flex;
  justify-content: center;
  color: #f00;
}

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

.compatibilityScore {
  flex-flow: column;
}
.compatibilityScore .text {
  font-size: 1.5em;
}

.text {
  font-size: 1em;
}

.text-card {
  box-shadow: 2px 2px 10px 6px rgba(0, 0, 0, 0.06);
  border-radius: 1em;
  padding: 1em;
}

#interests {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}
#interests .tag {
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0.25em 0.5em;
  border-radius: 0.5em;
}

.list {
  display: flex;
  flex-flow: column;
  gap: 1em;
}

section {
  display: flex;
  flex-flow: column;
  gap: 1em;
}
section .header {
  font-size: 1.25em;
  text-align: center;
}

#photoPreview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1em;
}
#photoPreview .preview-image {
  width: 100%;
  min-height: calc((100vw - 2em) * 0.4444444444);
  background: #eee;
  border: 1px dotted #555;
  border-radius: 0.5em;
}/*# sourceMappingURL=profile.css.map */