html {
    scroll-behavior: smooth;
  }

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

/*HEADER START*/

#backhome {
    text-decoration: none;
}

.headerLogo a {
    text-decoration: none;
}

#logo {
    font-family: 'Lobster';
    font-size: 48px;
    padding-left: 50px;
    padding-bottom: 20px;
    color: black;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid whitesmoke;
    background-color: white;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 99;
}

.searchbar {
    display: flex;
    width: 425px;
    height: 50px;
    align-items: center;
    background-color: whitesmoke;
    border-radius: 5px;
    right: calc(50% - 145px);
    margin-left: 85px;
}

.searchbar .material-symbols-outlined {
    color: gray;
    padding-left: 5px;
    font-size: 24px;
}

.searchbar input {
    font-family: 'Roboto';
    border: none;
    width: 100%;
    outline: none;
    font-size: medium;
    background-color: transparent;    
    padding-left: 5px;
}

.navIcons {
    padding-right: 50px;
}

.profile {
    width: 30px;
    height: 30px;
    object-fit: cover;
    object-position: top;
    border-radius: 100%;
    cursor: pointer;
}

/*HEADER END*/

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.material-symbols-outlined {
    font-size: 24px;
    color: #888;
    margin: 5px;
    cursor: pointer;
}

.material-symbols-outlined:hover {
    color: #555;
}

footer {
    background-color: whitesmoke;
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
}

footer div a {
    text-decoration: none;
    color: black;
}

.mobileHeader {
    display: none;
}

.mobileFooter {
    display: none;
}

.addPages{
    padding: 50px;
    background-color: whitesmoke;
    margin-bottom: 10px;
    margin-top: 50px;
}

#top {
    position: fixed;
    bottom: 70px;
    right: 30px;
    z-index: 99;
    outline: none;
    border: none;
    cursor: pointer;
    padding: 9px;
    border-radius: 4px;
    background-color: #888;
    border-radius: 50px;
}
  
#top:hover {
    background-color: #555;
}

#top span {
    color: white;
}

.story {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 95px;
    border: 1px solid #c3c3c3;
    border-radius: 10px;
    margin-top: 100px;
    overflow-x: hidden;
    margin-bottom: 20px;
}

.fStories {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    text-decoration: none;
    color: black;
    font-size: 14px;
    cursor: pointer;
    margin: 0px 2px;
}

.fImage {
    width: 45px;
    height: 45px;
    object-fit: cover;
    position: relative;
    border: 4px solid transparent;
    border-radius: 100%;
    background: linear-gradient(orange, purple, red, orange);
    background-clip: padding-box;
    padding: 2px;
}