@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-content: center;
  background: #f3e7e9;
  background: linear-gradient(to right, #f3e7e9, #e3eeff, #e3eeff);
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  padding-top: 40vh;
  padding-bottom: 40vh; 
  display: flex;
  justify-content: center;
  align-content: center;
  
}

.card {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 600px;
  height: 200px;
  border-radius: 10px;
  background-color: white;
  overflow: hidden;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}

.card-img {
  display: flex;
  justify-content: start;
  width: 200px;
  height: 200px;
  background-image: url(./img/pic.jpg);
  background-size: cover;
}

.card-text {
  width: 400px;
  height: 200px;
  /* padding: 20px; */
}

h3 {
  font-weight: regular;
  color: dimgray;
  padding-left: 10px;
}

p {
  font-size: 0.8rem;
  font-style: italic;
  padding-left: 10px;
}

.fa-brands {
  color: dimgray;
}

a {
  cursor: pointer;
}

.fa-linkedin:hover {
  color: #0077b5;
}

.fa-github-alt:hover {
  color: black;
}

.fa-dev:hover {
  color: black;
}

.icons {
  padding-left: 10px;
}
