@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    padding: 20px;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    background-color: #121212;
    color: #fff;
    font-family: "Raleway", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center_container {
    height: 450px;
    width: 300px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.full_screen{
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    display: none;
    height: 100%;
    width: 100%;
    /* background-image: url(https://cdn.pixabay.com/photo/2018/07/31/22/08/lion-3576045_1280.jpg); */
}

.stories_box {
    padding: 10px;
    height: 100px;
    padding: 10px;
    border-bottom: 1px solid #000;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}

.stories_box::-webkit-scrollbar{
    display: none;
}

.story {
    display: inline-block;
    margin-left: 10px;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    border: 3px solid red;
    overflow: hidden;
}

.story img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media screen and (max-width:500px) {
    
}