body {
    background-image: url('../assets/background.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

/* Nav bar madness */
.container.nav-all {
    max-width: 95%;
    width: 100vw;
    padding: 0px 0px;
}
.nav {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
  font-size: 1.5rem;
}
.nav-left,
.nav-right {
  color: white;
  padding: 10px;
  border-radius: 8px;
}
.nav-item {
    margin-left: 5px;
    margin-right: 5px;
}
.nav-item:first-child {
    margin-left: 0;
}
.nav-item:last-child {
    margin-right: 0;
}
.nav-link {
    background-color: #242424;
    border-radius: 4px;
    text-decoration: none;
    color: white;
    width: 100%;
    height: 100%;
    transition-duration: 0.1s;
    border: 1px solid transparent;
}
.nav-link:hover,
.nav-link:active {
    color: #2779F6;
    border-color: white;
}
.linkedin:hover,
.linkedin:active {
    color: #0079bb;
    border-color: white;
}
.github:hover,
.github:active {
    color: #b71ef3;
    border-color: white;
}
.blog:hover,
.blog:active {
    color: #14bb14;
    border-color: white;
}
.credits:hover,
.credits:active {
    color: #FFD700;
    border-color: white;
}
.nav-link.disabled,
.nav-link.disabled:hover,
.nav-link.disabled:active {
    background-color: #303030;
    color: rgb(0, 0, 0);
    border-color: transparent;
}
.nav-link.submenu {
    font-size: 16px;
}

.container.full-view {
    align-items: center;
    text-align: center;
    margin-bottom: 10px;
    overflow-y: scroll;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    max-width: 100rem;
}
.container.full-view::-webkit-scrollbar {
    display: none;
}
.container.widget {
    background-color: #242424;
    border: #ffffff;
    color: white;
    margin: 0px;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    font-size: 1.5em;
    text-align: center;
    padding-top: 10px
}
.container.pfp {
    background-color: #242424;
    border: #ffffff;
    color: white;
    border-radius: 8px;
    padding: 10px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.img-fluid {
    border-radius: 4px;
    background-color: #242424;
}
.titlecard-text {
    margin-left:20px;
    margin-right:20px;
    margin-top:10px;
    color: rgb(209, 209, 209);
}
.container.widget.title {
    color: rgb(209, 209, 209);
}
.container.widget.text {
    color: rgb(209, 209, 209);
}

/* TESTING */
.wrapper {
    display: flex;
    min-height: 600px;
    border: 1px solid #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

#sidebar {
    width: 175px;
    background-color: #242424;
    transition: all 0.3s;
    border-radius: 8px;
}

#sidebar.collapsed {
    margin-left: -175px;
}

#sidebar .nav-link {
    color: #fff;
}
#content {
    flex-grow: 1;
    padding: 10px;
    transition: all 0.3s;
    min-width: 0;
}
#content.full {
    width: 100%;
}
.toggle-btn {
    background-color: #242424;
    border-radius: 4px;
    text-decoration: none;
    color: white;
    width: 145px;
    height: 100%;
    transition-duration: 0.1s;
    border: 1px solid transparent;
}