@import url("https://fonts.googleapis.com/css2?family=Satisfy&family=Vazirmatn&display=swap");
/* font-family: 'Satisfy', cursive;
font-family: 'Vazirmatn', sans-serif; */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Vazirmatn", sans-serif;
}

html,
body {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

body {
  background-color: #151519;
  color: #eee;
}

.card {
  border-radius: 25px;
  height: 650px;
  width: 85%;
  max-width: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0px 0px 20px rgb(0, 0, 0);
  background-image: url("assets/img/bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.header {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 12px;
}

.profile_image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  box-shadow: 0px 0px 10px rgb(0, 0, 0);
}

.text_container {
  width: 100%;
  padding: 36px;
  font-weight: 700;
}
.text_container > ul > li {
  margin: 3px;
  font-size: 16px;
  font-weight: 400;
}
/* .bio_text{
    font-size: 23px;
    font-weight: 200; 
} */

.title {
  margin-top: 10px;
  /* font-family: 'Satisfy', cursive; */
  font-size: 40px;
  text-shadow: 0px 0px 10px rgb(0, 0, 0);
  font-weight: 800;
}
.icon_container {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;

  width: 100%;
  height: 50px;
}
.icon {
  padding: 8px;
  margin: 3px;
  width: 42px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  transition: all ease 0.5s;
}
.icon:hover {
  width: 55px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.475);
}
