
/*CSS Reset
The goal of a reset stylesheet is to reduce browser inconsistencies in things like default 
line heights, margins and font sizes of headings, and so on.
*/
html, body, div, span, applet, object, iframe, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/*Basic Styling*/

body {
    background-color: #2d2d2de5;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}


/*Header Content*/

#nav-bar {
    /* background: linear-gradient(250deg, rgba(50, 10, 240, 0.9) 5%, rgb(76, 19, 183) 20%, rgba(30, 30, 91, 0.85) 45%, rgba(48, 48, 70, 0.85) 95%); */
    background: linear-gradient(to right, rgba(23, 22, 28, 0.9) 5%, rgba(96, 84, 117, 0.554) 20%, rgba(14, 14, 23, 0.85) 45%, rgba(0, 0, 109, 0.85) 95%);
    width: 100%;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    font-family: sans-serif;
    font-weight:bold;
}

    #nav-bar li {
        display: inline-block;
    }

    #nav-bar a {
        display: block;
        text-decoration: none;
        color: white;
        padding: 10px 35px;
    }

    #nav-bar a:hover {
        background: linear-gradient(to right, rgba(50, 10, 240, 0.9) 3%, rgb(121, 121, 255) 6%, rgba(50, 50, 220, 0.85) 10%, rgba(236, 236, 247, 0.85) 90%);
        /* background-color: rgba(73, 97, 255, 0.764); */
    }



/*Container for the introduction section of the website*/
.intro-container {
    width: 100%;
    margin: 0 auto;
    /* background: #262834; */
    /* background-color: rgba(44, 51, 118, 0.738); */
    background: linear-gradient(360deg,rgba(118, 118, 118, 0.062) 5%, rgb(42, 39, 39) 15%, rgb(118, 118, 118) 85%, rgb(75, 75, 75) 95%);
 
}

    .wrapper {
        text-align: center;
    }

    .wrapper2 {
        text-align: left;
    }

    .intro-content {
        display: block;
        width: 100%;
        margin: auto;
    }

    .intro-content div {
        display: inline-block;
        /*establishing the cells in the grid and assigning them names*/
        padding: 60px 20px 80px;
        margin: 0;
        color: white;
    }

    #pro-pic {
        border-radius: 100px;
    }


    .intro-col-2 > p {
        padding: 5px 30px 10px 0px;
    }

    .btn {
        font: bold 11px Arial;
        text-decoration: none;
        background-color: #EEEEEE;
        color: #333333;
        width: 100%;
        padding: 5px 10px 5px 6px;
        border-top: 1px solid #CCCCCC;
        border-right: 1px solid #333333;
        border-bottom: 1px solid #333333;
        border-left: 1px solid #CCCCCC;
        border-radius: 5%;
    }

        .btn-primary {
            background: linear-gradient(250deg, rgba(39, 39, 182, 0.413) 5%, rgb(155, 160, 254) 15%,  rgb(74, 75, 102) 50%, rgb(0, 7, 143) 90%);
            color: #ffffffd1;
            text-align: center;
        }

        .contact-list li {
            padding: 10px 10px 5px 30px;
        }

        .btn-wrapper {
            display: inline-block;
            width: 110px;
            height: 20px;
            padding: 15px 5px 5px 5px;
        }

        .btn:hover {
            background: linear-gradient(to right, rgba(50, 10, 240, 0.9) 3%, rgb(121, 121, 255) 6%, rgba(50, 50, 220, 0.85) 10%, rgba(236, 236, 247, 0.85) 90%);
        }

    /*Contact Page Heading Styling*/
    .contact-me {
        padding: 5px 30px 0px;
        
    }

    /*Creating gradient color for text*/
    .gradient-text {
        /*Apply linear gradient as the background*/
        background-image: linear-gradient(to right, #c9cdff 10%, #ffffff 15%, #f8f9fbaf 20%, #8e62fff6 40%, #001db0 80%);

        /*Clip the background to the text characters*/
        -webkit-background-clip: text; /*for WebkitBrowsers (Chrome, Safari)*/
        background-clip: text;

        /*Make the text transparent so the background gradient is visible*/
        color: transparent;

        /*(Optional) Set font size for better visibility */
    }




/*Second container for the middle section of the website*/
.container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    /* color: rgb(255, 255, 255); */
}


    .col-color-grad-1 {
        background-color: rgba(19, 20, 36, 0.567);

    }
    .col-color-grad-1::after {
        content: "";
        position: absolute;
        background-color: #0202026e;
        width: 100%;
        height: 2px;
    }

    /*Center Body Content
    col-s (side column) - noticed repetitive naming for the same thing since its not being used in another way
    col-c (center column) - same as above
    */

    .col-s {
        flex: 1;
    }

    .col-c {
        flex: 9;
    }

.grid-container {
        display: grid;
        /*establishing the cells in the grid and assigning them names*/
        grid-template-columns: auto auto;
        padding: 50px 100px 70px;
        text-align: center;
        color: rgb(255, 255, 255);
    }

    .grid-container img {
        width: 500px;
        height: 350px;
    }

/*Footer Content*/

.footer-content {
    display: block;
    width: 100%;
    margin: auto;
}

.footer-content li {
    float: right;
    padding: 50px 85px;
}

.footer-content a {
    text-decoration: none;
}






/*- TESTING CODE BELOW -*/

    /* .intro-content::before {
        content: "<";
        font-size: 150px;
        margin: 0;
        padding: 0 5px;
    }
    .intro-content::after {
        content: "/>";
        font-size: 150px;
        margin: 0;
        padding: 0 50px;
    } */


/*Example using the ::before and ::after pseudo elements*/
/* #badge {
    position: relative;
} */

/* #badge::before {
    content: "";
    background-color: red;
    width: 100%;
    height: 5px;
    position: absolute;
    bottom: 0px;
} *//* .intro-container::before {
    content: "";
    background: linear-gradient(120deg,rgba(118, 118, 118, 0.062) 5%, rgba(101, 101, 101, 0.749) 15%, rgba(118, 118, 118, 0.627) 85%, rgb(75, 75, 75) 95%);
    position: absolute;
    width: 100%;
    height: 20px;
    margin: 0;
    left: 0;
    top: 38px;
}
.intro-container::after {
    content: "";
    background: linear-gradient(120deg,rgb(255, 254, 254)5%, rgba(66, 66, 66, 0.172) 35%, rgba(118, 118, 118, 0.627) 50%, rgba(75, 75, 75, 0.231) 75%);
    position: absolute;
    width: 100%;
    height: 25px;
    margin: 0 auto;
    left: 0;
    top: 441px;
} */
 
/*.container {
    /* background: linear-gradient(45deg, rgba(50, 50, 50, 0.8) 10%, rgba(20, 20, 20, 0.95) 37%,rgba(255, 255, 255, 0.6) 50%), rgba(60, 60, 60, 0.6) 70%) ; */
    /* background-image: url("../../assets/imgs/smokey.jpg");
    background-repeat: none;
    background-size: 100%; */
    /* transform: rotate(45deg) 
}
*/