* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: whitesmoke;
}


/* ---------------Aside-------------------- */

aside {
    position: absolute;
    width: 20px;
    overflow-x: hidden;
    background-color: black;
    color: white;
    padding: 25px;
    padding-bottom: 30px;
    transition: .8s;
    height: 100vh;
    overflow-y: scroll;
}

::-webkit-scrollbar {
    width: 0px;
}

aside h2 {
    font-family: 'Kdam Thmor Pro', sans-serif;
    display: flex;
    align-items: baseline;
    margin-top: 10px;
    font-size: 30px;
    /* color: aqua; */
    transition: .8s;
}

aside #aheader {
    margin-left: -10px;
    margin-right: 10px;
    transition: .8s;
}

aside h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 23px;
    margin-top: 10px;
    margin-left: 30px;
    transition: .8s;
}

aside ul li {
    list-style: none;
    padding: 8px;
    font-size: 17px;
    margin-top: 5px;
    font-weight: bold;
    margin-left: -18px;
    display: block;
    width: 200px;
    transition: .8s;
}

aside ul li i {
    width: 28px;
    font-size: 23px;
    transition: .8s;
}

aside ul li a {
    margin-left: 5px;
    text-decoration: none;
    color: white;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold;
    width: 100%;
    transition: .8s;
}


/* ---------header------------------------- */

main header {
    font-family: 'Kdam Thmor Pro', sans-serif;
    font-size: 35px;
    transition: .8s;
}


/* ---------------Main------------------ */

main {
    width: 65%;
    margin-left: 80px;
    /* padding: 20px; */
    background-color: whitesmoke;
    margin-top: 4vh;
    /* margin-bottom: 4vh; */
    height: 95vh;
    ;
    overflow-x: scroll;
    float: left;
}

main header {
    background-color: white;
    padding-left: 20px;
    padding: 10px;
    /* margin-top: 20px; */
}

article {
    background-color: whitesmoke;
}

main #br1 {
    /* height: 5px; */
    /* width: 100%; */
    background-color: whitesmoke;
}

article {
    background-color: white;
    padding: 20px;
}


/* -----------------NAV------------------------- */

nav {
    width: 23%;
    background-color: #fff;
    float: right;
    padding: 20px;
    margin: 4vh;
    height: 92vh;
    overflow-x: scroll;
    text-align: center;
}

nav h2 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
}

nav .one {
    border: 2px solid #ededed;
    padding: 8px;
    margin: 10px;
    border-radius: 8px
}

nav .two {
    border: 2px solid #ededed;
    padding: 8px;
    margin: 10px;
    border-radius: 8px
}

nav .three {
    border: 2px solid #ededed;
    padding: 8px;
    margin: 10px;
    border-radius: 8px
}

nav .four {
    border: 2px solid #ededed;
    padding: 8px;
    margin: 10px;
    border-radius: 8px
}

nav .five {
    border: 2px solid #ededed;
    padding: 8px;
    margin: 10px;
    border-radius: 8px
}

nav .six {
    border: 2px solid #ededed;
    padding: 8px;
    margin: 10px;
    border-radius: 8px
}

nav #number1 {
    border: 2px solid #ededed;
    padding: 8px;
    margin: 10px;
    border-radius: 8px
}

nav textarea {
    width: 90%;
}

nav .one label {
    text-align: right;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

nav #number1 label {
    text-align: right;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

nav .two label {
    text-align: right;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

nav .three label {
    text-align: right;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

nav .four label {
    text-align: right;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

nav .five label {
    text-align: right;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

nav .six label {
    text-align: right;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

nav input {
    margin-top: 5px;
    padding: 5px;
    outline: none;
    border: 1px solid gray;
    border-radius: 5px;
}

nav textarea {
    margin-top: 5px;
    padding: 5px;
    outline: none;
    border: 1px solid gray;
    border-radius: 5px;
}

nav button {
    padding: 5px;
    font-size: 12px;
    font-weight: 600;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #ededed;
    outline: none;
    border: .8px solid gray;
    border-radius: 7px;
}


/* -------------Footer------- */

footer {
    color: white;
    background-color: #000;
    padding: 10px;
    font-weight: 900;
    text-align: center;
}


/* --------Hover---------------------- */

aside:hover {
    width: 230px;
}

aside ul li i:hover {
    color: orangered;
}

aside ul li:hover {
    color: orangered;
}

aside ul li a:hover {
    color: orangered;
}


/* -----------------MAX-Width----------------- */

@media(max-width:900px) {
    main {
        width: 63%;
    }
}

@media(max-width:800px) {
    main {
        width: 61%;
    }
}

@media(max-width:650px) {
    main {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        float: none;
        margin-left: 65px;
        overflow: none;
    }
    scroll-behavior::part {
        height: (100, 100, 100);
    }
    nav {
        float: none;
        margin-left: 65px;
        width: 80%;
    }
    #content {
        height: 100vh;
        padding: 0px;
        margin: 0px;
        overflow-y: scroll;
    }
}