﻿


@import url('https://fonts.googleapis.com/css2?family=Courier+Prime&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');



* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

html, body {
    background-color: #c5dbde;
    height: 100%;
}

.logo {
    color: rgb(226,226,226);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 20px;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 8vh;
    background-color: #20232A;
    font: 'Poppins', 'san-serif';
}

.nav-link {
    display: flex;
    justify-content: space-around;
    width: 35%;
}

    .nav-link li {
        list-style: none;
    }

    .nav-link a {
        color: rgb(226,226,226);
        text-decoration: none;
        letter-spacing: 3px;
        font-weight: bold;
        font-size: 14px;
    }

.angLogo {
    margin: 20px;
    float: left;
    width: 200px;
    height: 200px;
}

.banner {
    margin-right: 15%;
    margin-left: 15%;
    background-color: #f5f9fa;
    margin-top: 50px;
    margin-bottom: 10px;
    box-sizing: border-box;
    padding-right: 5%;
    padding-left: 5%;
    padding-top: 2%;
    padding-bottom: 2%;
    font-size: 14px;
}


.install {
    margin: 2% 15% 2% 15%;
    background-color: #f5f9fa;
    box-sizing: border-box;
    padding: 2% 5% 2% 5%;
    font-size: 14px;
    position: center;
}


.demo {
    margin: 2% 15% 2% 15%;
    background-color: #f5f9fa;
    box-sizing: border-box;
    padding: 2% 5% 2% 5%;
    font-size: 14px;
    position: center;
}

.summary {
    margin: 2% 15% 2% 15%;
    background-color: #f5f9fa;
    box-sizing: border-box;
    padding: 2% 5% 2% 5%;
    font-size: 14px;
    position: center;
}

.p-left {
    border-radius: 15%;
    margin: 10px;
    background-color: #FAF7F8;
}

h3 {
    padding-bottom: 5px;
    text-align: center;
}

p {
    padding-top: 5px;
    padding-bottom: 2px;
}

code {
    font-size: 14px;
    font-family: Courier New, Courier, monospace;
    font-weight: bold;
    text-align: center;
    padding-bottom: 5px;
    padding-left: 2em;
    color: maroon;
}

.code {
    display: block;
    width: 600px;
    height: 100px;
    /*margin: 5px 20px 5px 120px;*/
    margin-left: auto;
    margin-right: auto;
    padding-top: 2%;
}

.screenshot {
    display: block;
    margin-left: auto;
    margin-right: auto;
}


.nodeSetUp {
    display: block;
    width: 500px;
    height: 300px;
    /*margin: 5px 20px 5px 120px;*/
    margin-left: auto;
    margin-right: auto;
    padding-top: 2%;
}

.vsSetUp {
    width: 500px;
    height: 255px;
    margin: 5px 20px 5px 120px;
    padding-top: 2%;
}

.gitSetUp {
    width: 475px;
    height: 255px;
    margin: 5px 2px 5px 120px;
    padding-top: 2%;
}

footer {
    width: 100%;
    background-color: #282e34;
    color: white;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    margin-top: 0;
    padding-bottom: 2%;
    padding-top: 2%;
    bottom: 0;
}

    footer > a:link {
        color: white;
        text-decoration: none;
    }

    footer > a:hover {
        color: mediumslateblue;
    }

    footer > a:visited {
        color: #412B1E;
    }
/**/
/*CSS FOR INTRO PAGE SPECIFICALLY FOR PARALLAX DISPLAY*/

.pimg1, .pimg2, .pimg3, .pimg4 {
    position: relative;
    opacity: 0.70;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /*
    fixed = parallax
    scroll = normal
  */
    background-attachment: fixed;
}

.pimg1 {
    background-image: url('IntroPics/img2.jpg');
    min-height: 100%;
}

.pimg2 {
    background-image: url('IntroPics/img1.jpg');
    min-height: 400px;
}

.pimg3 {
    background-image: url('IntroPics/img3.png');
    min-height: 400px;
}

.pimg4 {
    background-image: url('../IntroPics/reactBg.jpg');
    min-height: 300px;
}

.section {
    text-align: center;
    padding: 50px 80px;
}

.section-light {
    background-color: #f4f4f4;
    color: #666;
}

.section-dark {
    background-color: #282e34;
    color: #ddd;
}

.ptext {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    color: #000;
    font-size: 27px;
    letter-spacing: 8px;
    text-transform: uppercase;
}

    .ptext .border {
        background-color: #111;
        color: #fff;
        padding: 20px;
    }

        .ptext .border.trans {
            background-color: transparent;
        }

@media(max-width:568px) {
    .pimg1, .pimg2, .pimg3, .pimg4 {
        background-attachment: scroll;
    }
}
