:root {
  --bgc-color: #eaecf8;
  --card-color: #e4e5e9;
  --font: "Roboto", sans-serif;
  --font-size-m: 2.5vh;
  --font-size-s: 2.2vh;
  --icons-font-size: 2.8vh;
  --section-padding: 1.8vh 2.8vh;
  --avatar-margin: 1.8vh;
  --p-margin-top: 1.8vh;
}

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

html {
  width: 100vw;
  height: 100vh;
}

body {
  width: 100%;
  height: 100%;
  background-color: var(--bgc-color);
  font-family: var(--font);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.card-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 70vh;
  width: 70vh;
  background-color: var(--card-color);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  border: 10px solid #073223;
  margin-right: 5vh;
}

/* PHOTO */

.main-photo {
  width: 73vh;
  height: 100%;
  display: flex;
  justify-content: center;
}

.pop-out-photo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 150%;
  overflow: hidden;
}

.main-photo svg {
  min-width: 135%;
  height: 183%;
}
