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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html,
body {
  height: 100%;
  width: 100%;
}
body {
  background: linear-gradient(115deg, #ee2a7b, #f9ce34, #6228d7);
  display: flex;
  align-items: center;
  justify-content: center;
}

#card {
  height: 600px;
  width: 350px;
  border-radius: 15px;
  border: 3px solid rgb(233, 114, 217);
  background-color: white;
  position: relative;

  overflow: hidden;
  /* overflow-x: auto; */
}

#storiyaan {
  /* display: flex;
  flex-direction: row; */
  height: 120px;
  width: 100%;
  background-color: black;
  border-bottom: 1px solid rgb(112, 105, 105);
  padding: 15px;
  padding-left: 3px;
  white-space: nowrap !important;
  /* overflow-x: scroll !important; */
  overflow-x: auto;
  overflow-y: hidden;
}
.abc {
  position: absolute;
  color: rgb(0 96 255);
  font-size: 30px;
  bottom: -4px;
  right: -2px;
  z-index: 10;
  /* background: white; */
  /* overflow: hidden; */
}
#storiyaan::-webkit-scrollbar {
  display: none;
}
.story {
  border-radius: 50%;
  border: 3px solid red;
  border-spacing: 20px !important;
  width: 90px;
  height: 90px;
  /* overflow: hidden; */
  margin-inline: 3px;
  display: inline-block;
  padding: 2.5px;
}

.story:nth-child(1) {
  position: relative;
  border: 0px solid white;
}

.story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-positiokn: center;
  border-radius: 50%;
}

#full-screen {
  height: 100%;
  width: 100%;
  position: absolute;
  display: none;
  background: url(https://images.pexels.com/photos/5380654/pexels-photo-5380654.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1);
  /* background:fixed; */
  background-position: center;
  background-repeat: no-repeat;
  transition: all 2.5s ease-in-out ;
  z-index:232;
  background-size: cover;
}

#full-screen:hover {
  transform: scale(1.05);
}

#mystory {
}


.posts{
  background-color: black;
  height: 100%;
  color: white;
}

header,footer{
  display: flex;
  padding: 10px;
  align-items: center;
  justify-content: space-between;
  padding-inline:20px ;
}
.div1,.footer1{
  display: flex;
  align-items: center;
  gap:15px
}
header img{
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
header i{
  font-size: 30px;
}

main{
  height: 60%;
  width: 100%;
}
main img{
  height: 100%;
  width: 100%;
}
footer {
  font-size: 30px;
  gap:30px;
}
footer i{
  z-index: 0;
}