/*-------------------PRIMARY-------------------*/
@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap");

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

:root {
  --dark-cyan: hsl(185, 75%, 39%);
  --very-dark-desaturated-blue: hsl(229, 23%, 23%);
  --dark-grayish-blue: hsl(227, 10%, 46%);
  --dark-gray: hsl(0, 0%, 59%);
  --white: #fff;
}

body {
  font-family: "Kumbh Sans", sans-serif;
  min-height: 100vh;
  font-size: 18px;
  background-color: var(--dark-cyan);
  background-image: url(/images/bg-pattern-top.svg),
    url(/images/bg-pattern-bottom.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: right 100vh bottom 45vh, left 100vh top 45vh;
}

img {
  min-width: 100%;
}

h2 {
  font-size: 18px;
  color: var(--very-dark-desaturated-blue);
  text-align: center;
  font-weight: 700;
}

p {
  color: var(--dark-gray);
  text-align: center;
}

/*-------------------UTILITY CLASS-------------------*/

.social-subtitle {
  font-size: 12px;
  letter-spacing: 0.2em;
  margin-top: 4px;
  margin-bottom: 20px;
}

/*-------------------CONTAINER-------------------*/

.container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/*-------------------BACKGROUND-------------------*/

.bg-pattern-bottom {
  min-width: 100px;
}

/*-------------------CARD-------------------*/

.profile-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 375px;
  border-radius: 15px;
  background-color: var(--white);
  box-shadow: 0px 7px 33px 17px rgba(0, 0, 0, 0.164);
}

.bubble-cover {
  border-radius: 12px 12px 0 0;
  background-size: cover;
}

.profile-picture {
  min-width: 35%;
  border: 5px solid var(--white);
  border-radius: 100px;
  display: flex;
  position: relative;
  margin-top: -60px;
}

.personal {
  text-align: center;
  margin-top: 20px;
}

.name {
  font-weight: bold;
  color: var(--very-dark-desaturated-blue);
}

.city {
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.age {
  font-size: 20px;
  font-weight: 400;
  color: var(--dark-gray);
}

.division-line {
  border: 1px solid var(--dark-gray);
  margin-top: 1rem;
  margin-bottom: 1.3rem;
  width: 100%;
  opacity: 10%;
}

.socials {
  display: flex;
  min-width: 300px;
  justify-content: space-around;
}

/*-------------------FOOTER-------------------*/

.attribution {
  font-size: 11px;
  margin-top: 2em;
  text-align: center;
  color: var(--white);
}
.attribution a {
  color: hsl(0, 0%, 98%);
}

/*-------------------MEDIA QUERIES-------------------*/

@media screen and (max-width: 720px) {
  body {
    background-image: url(/images/bg-pattern-top.svg),
      url(/images/bg-pattern-bottom.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: right 49vh bottom 45vh, left 49vh top 45vh;
  }
}

@media screen and (max-width: 600px) {
  body {
    background-image: url(/images/bg-pattern-top.svg),
      url(/images/bg-pattern-bottom.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: right 25vh bottom 45vh, left 19vh top 45vh;
  }
}
