/*
## GLOBAL CLASSES ##
*/
#background {
    background-position: center;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    left: 0;
    min-height: 100%;
    min-width: 100%;
    z-index: -1;
}

body {
    color: white;
    font: 22px Ubuntu;
    line-height: 2rem;
    margin: 100px 15% 100px 15%;
}

footer {
    border: 3px solid rgb(0, 162, 255);
    border-radius: 35px;
    background-color: rgba(48, 48, 48, 80%);
    min-height: 20px;
    text-align: center;
    padding: 18px;
    margin: 150px 0;
    text-decoration: none;
}

h1,h2,h3 {
    color: rgb(0, 162, 255);
    text-transform: uppercase;
    line-height: normal;
    text-align: left;
}

h2 {
    color: whitesmoke;
}

h4 {
    color: rgb(0, 162, 255)
}

.container-page {
    display: grid;
    grid-template-columns: 425px 1fr;
    grid-template-rows: 1fr;
    grid-gap: 50px;
}

.button {
    background-color: rgba(0, 162, 255, 10%);
    display: flex;
    margin-top: 12px;
    transition: 0.4s;
    border: 2.5px solid white;
    border-radius: 25px;
    font-size: 17px;
    text-decoration: none;
    color: white;
    padding: 15px 30px;
    text-transform: uppercase;
    justify-content: space-evenly;
}

.download {
    background-color: rgba(255, 0, 0, 10%);
    margin-top: 60px;
    margin-bottom: 60px;
}

.button:hover {
    color: rgb(0, 162, 255);
    border: 2.5px solid rgb(0, 162, 255);
}

/* 
## HEADER CONTAINER ##
*/

.container-header {
    color: white;
    background-color: rgba(94, 94, 94, 80%);
    border: 3px solid rgb(0, 162, 255);
    border-radius: 36px;
    text-align: center;
    padding: 30px;
    grid-row: auto;
    max-height: 100%;
    padding: 50px;
    position: relative;
}

.profile-picture {
    border: 4px solid rgb(0, 162, 255);
    width: 160px;
    border-radius: 100px;
    box-shadow: 0 0 100px -5px rgba(0, 195, 255, 0.25);
}

.social-links {
    max-width: 50px;
    max-height: 50px;
}

.social-icons {
    max-width: 50px;
    max-height: 50px;
    padding: 0 5px 30px 5px;
}

/*
## NAV CONTAINER ##
*/
/*
## CONTENT CONTAINER ##
*/
.container-content {
    background-color: rgba(48, 48, 48, 80%);
    border: 3px solid rgb(0, 162, 255);
    border-radius: 36px;
    grid-column: 2/3;
    grid-row: 1/2;
    max-width: 100%;
    max-height: 100%;
    padding: 50px;
    overflow-y: auto;
    overflow-x: hidden;
    align-self: center;
}

.summary {
    text-align: center;
}

.nav-buttons {
    width: 100%;
}

.home {
    text-align: center;
}

.resume {
    text-align: left;
}

.certifications {
    text-align: left;
}

.bar {
    color: rgb(0, 162, 255);
}

.status-active {
    color: green;
}

.status-completed {
    color: gray;
}

/*
## FOOTER ##
*/
.footer-links {
    text-decoration: none;
    color: white;
    text-decoration: underline;
    color: rgb(0, 162, 255);
}
