html, body {
    height: 100%;
    font-family: "Fira Mono", monospace;
    font-weight: 400;
    font-style: normal;
}

html,body,.header,footer,main {
    margin: 0;
    padding: 0;
}
/* overall text settings */
p {
    font-size: large;
    color: #fff;
    font-weight: 200;
}

/* page's layout */
aside {
    display: flex;
    flex-wrap: wrap;
    min-height: 100%;
    height: 100%;
    min-width: 18%;
    width: 18%;
    overflow:hidden;
    background-color: #132030;
}

main {
    min-width: 82%;
    width: 100%;/*  when the aside pannel is hidden  */
    height: 100%;
    background-color: #1e334e;
    overflow:auto;
}

/* keep this if main is bigger than aside */
body {
    display: flex;
    flex-direction: row;
    color: white; 
}

/* .header & footer appearance in the aside border */

/* simple margin settings for border background image */
.header{
    margin: 0% 2%;
}

/* .header's logo setting */
.header-logo {
    display: flex;
    justify-content: center; 
    align-items: center;
    width: 100%;
    height: 8%;
    margin-top: 6%;
    margin-bottom: 3%;
    margin-left: 2%;
}

.header-logo img {
    width: 35%;
    height: auto;
    margin-right: 10%;
}

.header-logo span {
    font-size: 2.1em;
    font-weight: 700;
    color: white;
}

.header-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit; 
}

/* sidebar placement settings */
.header {
    height: 100%;
    width: 100%;
    display: block;
}

/* all the navigation in the .header */
.header nav {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
    
}
.header nav a {
    display: flex;
    text-decoration: none;
    color: #fff;
    width: 100%;
    margin: 1% 0;
    padding: 6% 0;
    font-size: x-large;
    background-size: 100% 100%;
    /*background-image: url(../images/sololevborder.png);*/
    background-image: url(../images/b.test.png);
    justify-content: center;
    align-items: center;
}
.header nav a:hover {
    background-color: #1e334e;
    border-radius: 15px;
}
/* footer settings */
.header h2 {
    height: 5%;
    color: white;
    text-align: center;
    width: 100%;
    margin-top: 10%;

}

.footer {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
    background-image: url(../images/b.test.png);
    background-size: 100% 100%;
}

.footer a {
    text-decoration: none;
    color: #fff;
    width: 100%;
    margin: 1% 20%;
    padding: 5% 0;
    font-size: x-large;
}

.footer a:hover {
    background-color: #1e334e;
    border-radius: 15px;
}

/* burger menu */
#burger {
    display: none;
    height: 12%;
    border: solid 2px #fff;
    border-radius: 50%;
    position: fixed;
    right: 5%;
    bottom: 6.5%;
    z-index: 1;
}

#burger:hover {
    background-color: #132030;
}
/* h2 in the homepage */
.class {
    text-align: center;
    width: 100%;
}

/* dont worry bout that */
.laping {
    display: flex;
    flex-direction: row; 
    align-items: center;
    margin: 2% 0 0 2%;
}

.lawcky {
    height: 30px; 
    line-height: 30px;
    display: inline-block;
    margin-left: 13%;
    font-size: 7rem;
}



.lawcky .letter {
    text-shadow: 0 0 0.8em whitesmoke, 0 0 1em whitesmoke, 0 0 0.5em whitesmoke;
    mix-blend-mode: screen;
}

.spin-animation{
    animation: spin 11s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#pp {
    width: 20%;
}
