@font-face {
    font-family: 'Finger Paint';
    src: url('../resources/font/FingerPaint-Regular.ttf');
}

body {
    font-family: 'Open Sans',sans-serif;
    color:rgb(53, 54, 56);
}

#main_screen, #side_screen {
    display: flex;
    justify-content: space-between;
}

.main_screen {
    border-bottom: 1px solid rgb(53, 54, 56);
}

.myname_main {
    font-family: 'Montserrat',sans-serif;
    margin: 5px 0 11px 0;
}

.myname {
    font-family: 'Montserrat',sans-serif;
    margin: 5px 0 11px 10px;
}

nav {
    margin-right: 5px;
}

.sidebar {
    position: fixed;
    top: 0;
    right:-250px;
    width: 250px;
    height: 100vh;
    background: rgb(0, 0, 0);
    color: white;
    transition: right 0.3s;
    z-index: 1;
}

#side_navs {
    margin-top: 0;
}

.sidebar.show {
    right: 0;
}

#content, #main_screen{
    transition: right 0.3s;
}

.blur {
    filter: blur(5px);
}

#menu_btn, #menu_btn2{
    cursor: pointer;
    font-size: 24px;
}

a {
    text-decoration: none;
    color: rgb(167, 167, 167);
    font-size: 12px;
    transition-duration: 0.5s;
}

a:hover {
    color: rgb(255, 255, 255);
    font-size: 16px;
}

.liner {
    margin-top: 5px;
}

#my_story {
    width: 600px;
    padding: 5px 5px 5px 5px;
    margin-top: 20px;
}

.art {
    display: flex;
    justify-content: center;
    
    
}

.content {
    border-radius: 5px;
    box-shadow: 0 0 3px grey;
    padding: 5px 10px 5px 10px;
    text-align: justify;
    font-size: 13px;
    margin-bottom: 70px;
}

h4 {
    margin: 30px 0 20px 0;
}

.sub_heading {
    border-bottom: 1px solid grey;
    margin-top: 40px;
}
footer {
    position: fixed;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    left: 0;
    right: 0;
    color: white;
    text-align: center;
}