body {
    background-image: url('../img/personal_web_bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-family: 'Open Sans',sans-serif;
}

#menu_btn {
    position: absolute;
    top: 8px;
    right: 8px;
}

#main_screen, #side_screen {
    display: flex;
    justify-content: space-between;
}

.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;
}

#content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    
}

#intro_cover {
    background-image: url('../img/personal_web_bg_logo.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 720px;
    height: 450px;
    display: flex;
}

#left_container {
    width: 365px;
    align-items: center;
    text-align: center;
    justify-content: center;
}

p {
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 16px;
    margin-bottom: 10px;
}

#links {
    display: inline-flex;
    justify-content: space-between;
}

@media(max-width: 450px){
    body{
        width: 100vw;
        height: 100vh;
        background: white;
    }
    
    #intro_cover {
        background: none;
        display: flex;
        justify-content: center;
        text-align: center;
        height: 80%;
        width: 90%;
    }
    
    .sidebar {
        right:-200px;
        width: 200px;
    }
    
    #links a {
        margin-left: 10px;
        margin-right: 10px;
    }
    
}