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

/*=============== VARIABLES CSS ===============*/
:root {
  /*========== Colors ==========*/
  --hue-color: 16;

  --first-color: hsl(var(--hue-color), 53%, 49%);
  --title-color: hsl(var(--hue-color), 53%, 15%);
  --text-color: hsl(var(--hue-color), 12%, 35%);
  --text-color-light: hsl(var(--hue-color), 12%, 65%);
  --white-color: #fff;
  --body-color: hsl(var(--hue-color), 24%, 94%);

  /*========== Font and typography ==========*/
  --body-font: "Poppins", sans-serif;
  --biggest-font-size: 1.25rem;
  --small-font-size: 0.9rem;
  --smaller-font-size: 0.75rem;
  --tiny-font-size: 0.625rem;

  /*========== Font weight ==========*/
  --font-thin: 100;
  --font-light: 350;
  --font-medium: 400;
  --font-bold: 700;

  /*========== Margenes Bottom ==========*/
  --mb-0-25: 0.25rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2-5: 2.5rem;

  /*========== z index ==========*/
  --z-normal: 1;
  --z-tooltip: 10;
}

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

body {
  margin: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  font-family: var(--body-font);
  color: #555;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(https://wallpaperaccess.com/full/2130176.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.main__container {
  border-radius: 15px;
  background-color: #fbfeff;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-shadow: 0 2px 4px rgb(71 97 206 / 36%);
  color: #fff;
}

.main__container .card {
  position: relative;
  width: 360px;
  height: 600px;
  margin: 0px;
  border-radius: 15px;
}

.main__container .card .user__image {
  background-color: #fff;
  width: 11rem;
  height: 11rem;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 30%);
  border-radius: 50%;
  transform: translateY(50%);
  transition: transform 200ms cubic-bezier(0.18, 0.89, 0.32, 1.28);
  margin: 12px;
}

.main__container .card .banner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 7rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-sizing: border-box;
  border-radius: 15px 15px 0px 0px;
  margin: 0px;
  background: linear-gradient(90deg, #427c8a 0%, #dbfffd 100%);
}

.main__container .card .content {
  padding: 20px;
  text-align: center;
  transition: 0.5s;
  justify-content: inline;
  margin-top: 80px;
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

.main__container .card .content a {
  position: relative;
  display: block;
  padding: 8px 20px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 15px;
  text-shadow: none;
  margin-top: 5px;
  transition: 0.3s
}

.main__container .card .content a:hover {
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    transform: scale(1.06);
    
}

.main__container .card .content .name {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-light);
  /* --small-font-size */
}

.main__container .card .content .short__description {
  font-size: var(--small-font-size);
  
  font-weight: var(--font-thin);
  justify-content: center;
}

.row {
  display: flex;
  margin-top: 12px;
}

.column {
  margin: 0px 5px 0px 5px;
  width: 100%;
}

.separator {
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin: 12px 0px 12px 0px;
}

.credits {
  margin-top: 20px;
  margin-bottom: -10px;
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
}
</pre></body></html>