/* Main Site CSS Propertities */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
    z-index: 0;
}

/* Main Content Inner Box CSS */

body {
    background-color: azure;
}

#wrapper {
    display: flex;
    justify-content: center;
    margin: auto;
    padding: 0px;
    width: 800px;
    z-index: 4;
    background-color: white;
}

.mainnheader {
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 5px solid black; */
    fill-opacity: 100%;
    margin-bottom: 20px;
}

.inner-box {
    display: flex;
    position: relative;
    align-items: flex-start;
    width: 33vw;
    border: 5px solid black;
    margin: 0;
    height: 95vh;
    padding: 10px;
    justify-self: center;
    flex-direction: column;
}

.hellocontainer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 5px;
    font-size: larger;
}

#maintextcenter {
    text-align: center;
    display: block;
    width: 20vw;
    height: fit-content;
    justify-content: left;

}


#recopic {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    width: 50px;
    padding-bottom: 5px;
}


/* Left Navbar CSS */ 

.leftcontainer {
    display: flex;
    justify-content: left;
    align-items: flex-start;
    border: 5px solid black;
    border-right: 2.5px;
    width: 20vw;
    float: left;
}

.navbar {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.pageonenavbar {
    display: flex;
    flex-direction: column;
}

.navbarpagetwo {
    display: flex;
    flex-direction: column;
}


/* Right Navbar CSS */

.right-outer {
    display: flex;
    flex-direction: column;
    width: 20vw;
    justify-content: top;
    border: 5px solid black;
    border-left: 2.5px;
}

.socials {
    display: flex;
    flex-direction: column;
}



