@charset "utf-8";
/* CSS Document */
/* Author: Kiran S. Dwarkan */

/* Link Container Section */
.navigationBar {
    background-color: #EEE0C9;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 1.6rem;
    padding: 0.8rem;
    text-align: center;
    align-self: center;
}

@media only screen and (min-width: 768px) {
    .navigationBar {
        border-radius: 1rem;
    }
}

.navigationButton {
    background-color: #EEE0C9;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 160px;
    min-height: 4.8rem;
    border-radius: 1rem;
    margin: 0.4rem 0.4rem;
}

.navigationButton:hover {
    background-color: #F1F0E8;
    cursor: pointer;
}

.navigationButton:active {
    background-color: #80cbc4;
}

p.navButtonText {
    color: #000;
    font-size: 1.4rem;
    font-weight: 600;
}

/* End Link Container Section */

/* Social Media Icons */
.socialIcons {
    background-color: #80cbc4;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    min-height: 4rem;    
}

.socialIcon {
    width: 48px;
    height: 48px;
    margin: 0.4rem 1rem;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.socialIcon:hover {
    background-color: #F1F0E8;
    border-radius: 1rem;
}

.socialIcon:active {
    background-color: #80cbc4;
}

.linkedinIcon {
    background-image: url(../images/LinkedIn-Filled-32.png);
}

.twitterIcon {
    background-image: url(../images/Twitter-Filled-32.png);
}

.githubIcon {
    background-image: url(../images/GitHub-Filled-32.png);
}

/* End Social Media Icons */

/* Resume  */
.textContainer {
    overflow: auto;
    padding-bottom: 1.4rem;
    text-align: justify;
}

.textContainer ul {
    padding: 0 0 0 0.4rem;
    margin: 0 2rem;
}

.textContainer ul li {
    padding: 0;
    margin: 0 1.2rem;
    list-style-type: circle;
}

.textContainer dl {
    padding: 0;
    margin: 0;
}

.textContainer dl dt {
    padding: 0;
    margin: 0;
}

.textContainer dl dd {
    padding: 0;
    margin: 0;
}
/* End Resume Formatting  */
