.wrapper{
    display: flex;
    width: 100%;
    align-items: stretch;
}
#sidebar.active{
    margin-left: -250px;
}

body {
    background: #fafafa;
}

p{
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
}
h1, h2, h3, h4, h5, h6, strong{
    font-family: 'Russo One', sans-serif;
    font-weight: 500;
}
p, li, span, label, textarea{
    font-family: 'Roboto Mono', monospace;
}
a, a:hover, a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

#sidebar {
    min-width: 250px;
    max-width: 250px;
    min-height: 100vh;
    background: #131313;
    color: #fff;
    transition: all 0.3s;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: rgb(189, 103, 47);
}
#sidebar .sidebar-connect{
    padding: 10px;
    background: rgb(189, 103, 47);
}

#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 2px solid #1d1c1c;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}
#sidebar ul li a:hover {
    color: black;
    background: #76d15a;
}
#sidebarCollapse{
    background:rgb(116, 197, 96);
}

#sidebar ul li.active > a, a[aria-expanded="true"] {
    color: #fff;
    background: #6d7fcc;
}
ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #6d7fcc;
}
#content{
    width: 100%;
}
#main-container{
    margin: 0 auto;
}
#greeting-wrapper h1{
    margin: 0 auto;
    font-size: 70px;
}
#intro-wrapper{
    margin-top: 30px;
    padding: 0 50px;
}
.pic-wrapper{
    height: 300px;
    width: 300px;
}
#pic{
    margin: 0 auto;
    padding: 5px;
    border: 1px solid rgba(0, 0, 0, 0.24);
    border-radius: 50%;
    height: inherit;
    width: 400px!important;
    height: 400px!important;
    object-fit: cover;
}
#pic:hover{
    border-radius: 0%;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}
#intro-video{
    margin: 0 auto;
    width: 550px!important;
    height: 400px!important;
    object-fit: cover;
}
#intro-video > iframe{
    width: 508px;
    height: 346px;
}
#about{
    margin-top: -50px;
    margin-bottom: 20px;
    font-size: 14px;
}
@media (max-width: 768px){
    #sidebar{
        margin-left: -250px;
    }
    #sidebar.active{
        margin-left: 0;
    }
    #greeting-wrapper h1{
        font-size: 4rem;
    }
    #intro-video > iframe{
        width: 100%x;
        height: 70%;
    }
}
@media (max-width: 450px){
    #sidebar{
        margin-left: -250px;
    }
    #sidebar.active{
        margin-left: 0;
    }
    #greeting-wrapper h1{
        font-size: 2.5rem;
    }
}