h1 {
    font-family: "Knewave";
    text-align: center;
    font-size: 300%;
    color: #FF4FA7
}

.avatar {
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 4px solid #800080;
    border-radius: 100%;
    width: 20%;
    height: 20%;
    -webkit-transform: -webkit-transform .8s ease-in-out;
    transition: transform .8s ease-in-out;
}
.avatar:hover {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

body {
    background-color: #2c2f33;
    padding: 0;
    margin: 0;
    font-family: "Fredoka One";
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    color: #FFC0CB;
}

table {
    border-collapse: collapse;
    border: 5px solid #FF4FA7;
    width: 90%;
    margin: auto;
    margin-top: 20px;
    background-color: #23272a;
}
th, td {
    padding: 5px;
}
th {
    text-align: left;
}
td {
    text-align: left;
}


.main-content {
    word-wrap: break-word;
}

@media content and (min-width: 64em){
    .main-content {
        max-width: 64rem;
        padding: 2rem 6rem;
        margin: 0 auto;
        font-size: 1.1rem;
    }
}

@media content and (min-width: 42em) and (min-width: 64em){
    .main-content {
        padding: 2rem 4rem;
        font-size: 1.1rem;
    }
}

@media content and (min-width: 42em){
    .main-content {
        padding: 2rem 1rem;
        font-size: 1rem;
    }
}

#sidebar {
    position: fixed;
    width: 200px;
    height: 100%;
    background: rgb(53, 53, 58);
    left: -200px;
    transition: all 0.5s ease;
}

#sidebar.active {
    left: -40px;
}

.home_content{
    position: relative;
    background: #2c2f33;
    min-height: 100vh;
    top: 0;
    left: 78px;
    width: calc(100% - 82px);
    transition: all 0.5s ease;
    z-index: 2;
  }

#sidebar.active ~ .home_content{
    left: 220px;
    width: calc(100% - 250px);
}

#sidebar ul li {
    color: #FF69B4;
    text-align: center;
    padding: 15px 10px;
    list-style: none;
    border-bottom: 1px solid #FF4FA7;
}

#sidebar ul li a {
    text-decoration: none;
    color: #FF69B4;
}

#sidebar .toggle-btn {
    position: absolute;
    left: 220px;
    top: 20px;
    cursor: pointer;
}

#sidebar .toggle-btn span {
    display: block;
    width: 40px;
    text-align: center;
    font-size: 30px;
    border: 1px solid #FF4FA7;
}

.avatarside {
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 4px solid #800080;
    border-radius: 100%;
    width: 60%;
    height: 60%;
    -webkit-transform: -webkit-transform .8s ease-in-out;
    transition: transform .8s ease-in-out;
}

#sidebar h3 {
    font-size: 130%;
    color: #FFC0CB;
    font: "Fredoka One";
}

#sidebar li h6 {
    font-size: 120%;
}

.avatarside:hover {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}
