/* All formatting will be done here */


/*=========================== Standard Elements ==========================*/
html {
    scroll-behavior: smooth;
}

a {
    color: inherit;
    text-decoration: inherit;
}

main {
    display: flex;
    flex-direction: column;
}

body {
    padding-top: 20%;
}

/*============================ Main Background =============================*/

.background {
    background:rgb(27, 33, 49);
    margin: 0;
}


/*============================ Navigation Bar ===============================*/

.nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    background-color: rgb(27, 33, 49);
    position: fixed;
    top: 0;
    margin-bottom: 0;
    width: 100%;
    height: 50px;
    transition: transform 0.6s;
    flex-wrap: nowrap;
    border-bottom: 3px groove rgba(0, 255, 255, 0.514);
    box-shadow: 0 15px 20px 20px rgb(13, 18, 29);
    
}

.nav-hidden {
    transform: translateY(-80px);
    box-shadow: 0 30px 20px 20px rgb(13, 18, 29);
}

.heading-item {
    color: aqua;
    font-family: monospace;
    font-weight: bold;
    font-size: 1.3rem;
    padding: 0 1vw;
}

.heading-logo {
    height: 65px;
    width: 65px;
    padding-top: 20px;
   padding-right: 27vw; 
   padding-left: 2vw; 
}

/*============================ Introduction =============================*/

.intro {
    display: flex;
    flex-direction: column;
    align-content: center;
    margin: 0 auto 100px;
    padding-bottom: 20px;
    width: 70vw;
    height: auto;
    border-bottom: 10px double rgba(0, 255, 255, 0.514);
   /* background-repeat: no-repeat;
    border: 10px solid transparent;
    border-image: url(/Resources/corner.png) 30 stretch; */

}

.name {
    padding: 0;
    margin: 0;
    color: rgb(233, 233, 233);
    font-family: monospace;
    font-weight: bold;
    font-size: 7rem;
}

.intro-text {
    padding: 0;
    margin: 0;
    color: rgba(0, 255, 255, 0.534);
    font-family: monospace;
    font-weight: bold;
    font-size: 1.5rem;

}

.intro-description {
    padding: 0;
    margin: 0;
    color: rgb(197, 223, 223);
    font-family: monospace;
    font-weight: bold;
    font-size: 1rem;

}

/*-----------------------------------------------------------------------*/
/*=========================== Main Sections =============================*/
/*-----------------------------------------------------------------------*/

.sections-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 80%;
    height: 200px;
    margin: 0;
    border: 3px dotted aqua;
}

.section-heading {
    margin: 150px auto 50px;
    color: rgb(182, 210, 243);
    font-family: monospace;
    font-weight: bold;
    font-size: 2rem;
}

/* ======================== Skills ===========================*/
.section-skills {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    padding-bottom: 50px;
    
}

/* ======================== Project ===========================*/
.section-projects {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    padding-bottom: 50px;
    background-color: rgb(39, 44, 51);
}

/* ======================== Contact ===========================*/
.section-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding-bottom: 50px;
}

/* ========================= Footer ============================ */
.footer {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    background-color: rgb(27, 33, 49);
    bottom: 0;
    margin: 100px 0 0;
    width: 100%;
    height: 50px;
    flex-wrap: nowrap;
    border-top: 3px groove rgba(0, 255, 255, 0.514);
    box-shadow: 0 -15px 20px 20px rgb(13, 18, 29);
}

.footer-item {
    padding-right: 10px;
    color: rgb(197, 223, 223);
    font-family: monospace;
    font-weight: bold;
    font-size: 1rem;
}


