@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  background-image: url("https://media.giphy.com/media/Nzz86dByLtYTS/giphy.gif");
  background-size: cover;
  width: 100vw;
  height: 100vh;
  position: relative;
  font-family: Montserrat, sans-serif;
}
.card-container {
  background-color: white;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  width: 800px;
  height: 400px;
  box-shadow: 0px 20px 30px 10px rgba(0, 0, 0, 0.7);
  display: flex;
  overflow: hidden;
}
.image {
  width: 40%;
  height: 100%;
}
.details {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: rgb(0, 0, 0);
  padding: 2rem;
  letter-spacing: 0.6px;
  line-height: 1.02;
  position: relative;
}
p {
  color: white;
  padding-bottom: 0.8rem;
}

.name {
  color: white;
  font-size: 40px;
  letter-spacing: 1px;
}
.profession {
  letter-spacing: 1px;
}

.profession-2 {
  font-size: 14px;
}
.description {
  font-size: 12px;
  line-height: 1.4;
}

.know {
  text-decoration: none;
  color: #ffd700;
}

.know i {
  font-size: 12px;
  margin-left: 2px;
}

.social-links {
  display: flex;
  justify-content: space-between;
  width: 40%;
  margin-top: 1rem;
}

.social-links a i {
  font-size: 1.6rem;
  color: #ffd700;
}

.verified {
  color: #333;
  text-align: center;
  position: absolute;
  bottom: 2rem;
  right: -2.4rem;
  transform: rotate(-45deg);
  letter-spacing: 3px;
  background-color: #ffd700;
  padding: 0.2rem;
  width: 10rem;
}

.image img {
  width: 100%;
}

@media only screen and (max-width: 1200px) {
  .card-container {
    flex-direction: column;
    height: 700px;
    width: 400px;
  }
  .image {
    width: 100%;
    height: 40%;
  }
  .details {
    width: 100%;
    height: 60%;
    padding: 1rem;
  }

  .description,
  .profession-2 {
    width: 90%;
  }
}

@media only screen and (max-width: 600px) {
  .card-container {
    width: 80%;
    height: 520px;
  }
  .image {
    width: 100%;
    height: 40%;
  }
  .details {
    width: 100%;
    height: 60%;
    padding: 1rem;
  }

  .description,
  .profession-2 {
    width: 90%;
  }
  .name {
    font-size: 30px;
  }
  p {
    padding-bottom: 0.4rem;
  }

  .description {
    font-size: 10px;
    line-height: 1.2;
  }
  .profession,
  .profession-2 {
    font-size: 12px;
  }
  .social-links {
    width: 40%;
  }
  .know {
    font-size: 10px;
  }

  .social-links a i {
    font-size: 1.2rem;
  }
}
