/* Css reset */

* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  color: inherit;
  display: inline-block;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  border: 0;
}

ol,
ul {
  list-style: none;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Courier New", Courier, monospace;
}

/* End Css reset */

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #e5e5f7;
  opacity: 0.8;
  background-image: radial-gradient(#444cf7 1.1500000000000001px, #e5e5f7 1.1500000000000001px);
  background-size: 1.9rem 1.9rem;
}


.card {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 1rem;
  min-width: 35rem;
  overflow: hidden;
  box-shadow: 0 0 .5rem rgba(0, 0, 0, 0.1);
}

.top {
  height: 10rem;
  background-color: #e5e5f7;
  opacity: 0.8;
  background-image: repeating-radial-gradient(circle at 0 0, transparent 0, #e5e5f7 1rem),
    repeating-linear-gradient(#444cf755, #444cf7);
}

.middle {
  text-align: center;
  margin-top: -6rem;
  z-index: 1;
}

.pic {
  width: 12rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: .4rem solid white;
}

.title {
  font-size: 2.2rem;
}

.profession {
  font-size: 1.6rem;
}

.bottom {
  display: flex;
  margin-top: 3rem;
  border-top: .1rem solid #c4c4cc;
}

.column {
  flex: 1;
  text-align: center;
  padding: 1rem;
}

.column:nth-child(2) {
  border-left: .1rem solid #c4c4cc;
  border-right: .1rem solid #c4c4cc;
}

.icon {
  width: 2rem;
  aspect-ratio: 1 / 1;
}

.username {
  font-size: 1.2rem;
}