/* universal header styling */

header * {
    text-decoration: overline;
    background-color: black;
}


/* navBar styling */

.navBar {
    height: 50px;
    line-height: 15px;
    background-color: white;
    border: 2px solid black;
    font-size: larger;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navBar ul {
    list-style-type: none;
    display: flex;
    padding-inline-end: 200px;
    padding-inline-start: 200px;   
}

.navBar li {
    line-height: 50px;
    padding: 0 15px;
    position: relative;
}

.navBar li button {
    text-align: center;
}

.navBar li button.active-page {
    border: none;
    color: rgb(117, 117, 225);
    background-color: aqua;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    font-style: oblique;
    cursor: pointer;
    width: 200px;
    height: 50px;
    padding-bottom: 5px;
    padding-top: 5px;
    text-decoration: underline;
}


/* button styling */

.button {
    border: none;
    color: rgb(117, 117, 225);
    background-color: white;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    font-style: oblique;
    cursor: pointer;
    width: 200px;
    height: 50px;
    padding-bottom: 5px;
    padding-top: 5px;
}

.button:hover {
    background-color: aqua;
    color: black;
}


/* body styling */

.body {
    background-color: black;
    font-family: 'Times New Roman', Times, serif;
}


/* footer styling */

.footer {
    padding-top: 30px;
    padding-bottom: 50px;
    background-color: white;
    color: rgb(117, 117, 225);
    text-align: center;
}


/* center class */

.photo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
    padding-bottom: 50px;
    width: 50%;
}


/* logo styling */

.logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    width: 70px;
    height: 70px;
}

/* icon styling */

.icon {
    padding-bottom: 10px;
    width: 85px;
    height: auto;
}

.icon-mail {
    padding-bottom: 10px;
    width: 70px;
    height: auto;
}


/* INDEX PAGE */

#index-text {
    padding-top: 50px;
    color: white;
    text-align: center;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}


/* RESUME PAGE */

.wrapper {
    display: flex;
}

.left {
    flex: 30%;
    padding: 50px;
    background-color: black;
    color: white;
    text-align: left;
}

.right {
    flex: 70%;
    padding: 50px;
    background-color:aqua;
    color: black;
    text-align: left;
}

.resume-skills-list {
    list-style-type: square;
}

.resume-left-h2 {
    font-weight: 900;
    font-style: italic;
    font-size: x-large;
    text-decoration: underline;
    color: rgb(2, 143, 237);
}

.resume-right-h2 {
    font-weight: 900;
    font-style: italic;
    font-size:x-large;
    text-decoration: underline;
    color: rgb(4, 86, 141);
}

/* Resume Table Properties */

th, td {
    padding: 5px;
}

table {
    border-spacing: 7px;
}


/* ABOUT ME PAGE */

.about-text {
    padding-top: 50px;
    color: white;
    text-align: center;
    padding-bottom: 50px;
}


/* WEB SKILLS PAGE */

.web-text {
    padding-top: 50px;
    color: white;
    text-align: right;
    padding-right: 20%;
}

#web-skills-list {
    padding-top: 50px;
    list-style-type: upper-roman;
    color: white;
    text-align: right;
    padding-right: 20%;
}

.left-web {
    flex: 50%;
    padding: 50px;
    background-color: black;
    
}

.right-web {
    flex: 50%;
    padding: 50px;
    background-color:black;
    color: white;
}


/* print styling */

@media print {
    * {
        background: none;
        font-size: 16pt;
    }

    .navBar {
        display: none;
    }

    .h2 {
        font-size: 18pt;
    }

}
