/* creating a normality within the page */
* 
{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    margin: 0;
}
a:visited, a:link, a:active {
    color: black;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
h2, h3 {
    font-weight: normal;
}
#main-window
{
    width: 100%;
    height: 100%;
}

/* styling section that holds everything */
main 
{
    background-color: #d5d2cd;
    width: 100%;
    height: 1500px;
    
    display: flex;
    justify-content: center;
    align-items: center;
}
#content-window {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
}

/* #region HEADER */
header 
{
    width: 100%;
    height: 5%;

    background-image: linear-gradient(to right, #080a89, #a4caf6);

    display: flex;
    align-self: center;
    align-items: center;
    justify-content: end;
}
.header-icon
{
    width: 70px;
    margin: 5px;
    image-rendering: pixelated;
}
.header-icon:hover 
{
    filter: brightness(0.75);
}
#icon-x { margin-right: 15px; }
/* #endregion HEADER */

/* styling for navigation that takes you back to home page */
#nav-head
{
    padding: 15px;
    font-size: 16px;
    height: 20px;
}

/* styling for the certifcation list */
#certs-section
{
    margin-top: 10%;
    width: 60%;

    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;

    flex-direction: column;

    line-height: 200%;
    text-align: center;
}

/* styling for the certification images */
#cert-imgs
{
    display: flex;
    align-items: center;
    justify-content: center;
}
#cert-img1
{
    width: 100px;
    height: 100px;
}
#cert-img2
{
    width: 150px;
    height: 150px;
}
#cert-img3
{
    width: 100px;
    height: 100px;
}