@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
* {
    margin: 0;
    padding: 0;
    user-select: none;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.main-container {
    display: flex;
    height: 100vh;
}

.btn {
    position: absolute;
    top: 15px;
    left: 15px;
    height: 45px;
    width: 45px;
    text-align: center;
    background: #580444;
    border-radius: 3px;
    cursor: pointer;
    transition: left 0.4s ease;
    z-index: 1001;
}

.btn.click {
    left: 600px;
}

.btn span {
    color: white;
    font-size: 28px;
    line-height: 45px;
}

.btn.click span:before {
    content: '\f00d';
}

.sidebar {
    position: fixed;
    width: 550px;
    height: 100%;
    left: -550px;
    background: #580444;
    transition: left 0.4s ease;
    z-index: 1000;
}

.sidebar.show {
    left: 0px;
}

.sidebar .text {
    color: white;
    font-size: 18px;
    font-weight: 600;
    line-height: 65px;
    text-align: center;
    background: #580444;
    letter-spacing: 1px;
}

nav ul {
    background: #580444;
    height: 100%;
    width: 100%;
    list-style: none;
}

nav ul li {
    line-height: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

nav ul li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav ul li a {
    position: relative;
    color: white;
    text-decoration: none;
    font-size: 13px;
    padding-left: 40px;
    font-weight: 500;
    display: block;
    width: 100%;
    border-left: 3px solid transparent;
}

nav ul li.active a {
    color: white;
    background: #580444;
    border-left-color: white;
}

nav ul ul {
    position: static;
    display: none;
}

nav ul .feat-show.show,
nav ul .setup-show.show {
    display: block;
}

nav ul ul li {
    line-height: 42px;
    border-top: none;
}

nav ul ul li a {
    font-size: 17px;
    color: #e6e6e6;
    padding-left: 80px;
}

nav ul li.active ul li a {
    color: #e6e6e6;
    background: #580444;
    border-left-color: transparent;
}

nav ul ul li a:hover {
    color: white !important;
    background: #580444 !important;
}

nav ul li a span {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 22px;
    transition: transform 0.4s;
}

nav ul li a span.rotate {
    transform: translateY(-50%) rotate(-180deg);
}

.content-wrapper {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: margin-left 0.4s ease;
    margin-left: 0;
    padding: 20px;
}

.sidebar.show + .content-wrapper {
    margin-left: 450px;
}

.content {
    text-align: center;
    color: #580444;
}

.content .header {
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 20px;
}

.content .logo-container img {
    height: 350px;
    width: 350px;
}

.content .footer {
    font-size: 12px;
    color: #580444;
}

.content .footer p {
    font-size: 16px;
    color: #580444;
}

.main {
    left: 260px;
    width: calc(100% - 260px);
    transition: all 0.5s ease;
    z-index: 1000;
  }

  .main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    z-index: 100;
    background: #fff;
    display: flex;
    flex-direction: column;
  }
  .main h1 {
    color:#580444;
    font-size: 40px;
    text-align: center;
  }