html {
  overflow: hidden;
  height: 100%;
}

body {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(images/background2.jpeg) no-repeat center fixed;
  background-size: cover;
}

* {
  margin: 0;
  padding: 0;
}

.container {
  font-family: "Josefin Sans", sans-serif;
  height: 100vh;
  width: 100vw;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  padding: 5px;
}

.card-wrapper {
  height: 500px;
  width: 450px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(
      190deg,
      rgba(127, 108, 95, 0.8),
      50%,
      rgba(105, 66, 55, 0.8) 0
    ),
    url(images/background2.jpeg) no-repeat;
  transition: box-shadow 1s;
  border-radius: 10px;
  padding: 10px;
}

.card-wrapper:hover {
  box-shadow: 0 0 20px #ffffff;
}

.card-img {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  padding: 10px;
  box-shadow: -20px -30px 50px rgba(0, 0, 0, 0.5);
}

.card-header {
  font-family: "Source Code Pro, monospce";
  font-size: 25px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: linear-gradient(rgba(127, 108, 95, 0.8), rgba(105, 66, 55, 0.8));
  width: 70%;
  text-align: center;
  padding: 5px 0;
  transform: perspective(1000px) skewX(-20deg) rotateY(40deg);
}

.card-paragraph {
  font-size: 18px;
  color: #dddddd;
  width: 85%;
  text-align: justify;
  position: relative;
}

.card-paragraph::first-letter {
  margin-left: 40px;
}

.card-paragraph i {
  color: #ffffff;
  font-size: 25px;
  font-style: italic;
  position: absolute;
}

.card-paragraph i:first-child {
  top: -10%;
}

.card-paragraph i:last-child {
  bottom: -10%;
  margin-left: 10px;
}

.card-icons {
  list-style: none;
  display: flex;
  width: 50%;
  justify-content: space-around;
}

.card-icon-link {
  text-decoration: none;
  width: 35px;
  height: 35px;
  border: 1px solid #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.card-icon-link:hover {
  border: 1px solid #1b5cf5;
}

.card-icon {
  font-size: 20px;
  color: #ffffff;
  transition: color 0.3s;
}

.card-icon-link:hover .card-icon {
  color: #1b5cf5;
}

.card-btn {
  border: none;
  outline: none;
  width: 150px;
  height: 35px;
  margin-bottom: 20px;
  border-radius: 50px;
  background: linear-gradient(rgba(54, 51, 50), rgba(105, 66, 55, 0.8));
  color: #ffffff;
  text-transform: uppercase;
  font-size: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.card-btn:hover {
  width: 180px;
  height: 40px;
}
