* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  background-color: rgb(0, 208, 255);
  display: flex;
  justify-content: center;
  align-items: center;
}

#card {
  height: 480px;
  width: 320px;
  background-color: #fff;
  border-radius: 10px;
  border: 3px solid #000;
  position: relative;
  overflow: hidden;
}

#storiya {
  width: 100%;
  height: 120px;
  border-bottom: 1px solid #000;
  padding: 15px;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

#storiya::-webkit-scrollbar {
  display: none;
}

.story {
  border: 3px solid red;
  height: 90px;
  width: 90px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  margin-right: 5px;
}

.story img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

#full-screen {
  height: 100%;
  width: 100%;
  position: absolute;
  display: none;
  background-position: center;
  background-size: cover;
}
