body {
    justify-content: center; 
    background-color: darkslategray;
    margin-left: 10%;
    margin-right: 10%;
}

/************************ HEADER STYLE CSS ( ALL PAGE ) ***********************/

header {
    background-color: black;
    border-radius: 10px;
    position: fixed; 
    top: 0; 
    left: 0;
    width: 100%; 
    z-index: 1000; 
    opacity: 0.8;
}

header nav {width: 100%;}


header nav ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    padding: 10px;
    height: 100%;
}

header nav ul li {
    width: 33%;
    height: 25px;
    padding: 10px;
}

header nav ul li a { 
    display: inline-block; 
    background-color: white; 
    color: black; 
    text-decoration: none;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    text-align: center;
    padding-top: 5px;
}

/******************* FLEXBOX STYLE CSS ( PROJECT PAGE ) ************************/


.FlexBox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 125px;
    gap: 20px;
}

.FlexBox div {
    background-color: black; 
    border-radius: 15px; 
    padding: 20px; 
    text-align: center; 
    width: 100%; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); 
    transition: transform 0.3s, box-shadow 0.3s; 
}

.CareerButton{
    display: inline-block; 
    background-color: white; 
    color: black; 
    text-decoration: none;
    border-radius: 10px;
    width: 20%;
    height: 35%;
    text-align: center;
    padding-top: 5px;
}

.FlexBox div:hover {
    transform: scale(1.05); 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7); 
}


.FlexBox .PacManImage {
    max-width: 80%; 
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.FlexBox .CodeImage {width: 300px;height: 300px;}

.FlexBox video {
    width: 50%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.FlexBox h2 {
    color: white;
    font-size: 18px;
    margin-top: 10px;
}

/******************** FORM STYLE CSS ( FORM PAGE ) ****************************/


.FormButton {
    background-color: white; 
    color: black; 
    border-radius: 10px;
    border-style: none;
    width: 10%;
    height: 10%;
}

/************************ BOX STYLE CSS ( ALL PAGE ) **************************/



.MainBox { /* MAIN BOX IN CENTER TO HANDLE MANY BOX */
    width: 100%;
    height: 100%;
    height: 150%;
    display: flex;
    justify-content: center;
    margin-top: 110px;
    background-color: black;
    border-radius: 10px;
}

.FooterBox { /* MAIN BOX IN CENTER TO HANDLE MANY BOX */
    width: 100%;
    height: 100%;
    height: 150%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    background-color: black;
    border-radius: 10px;
}

/************************ BOX STYLE CSS ( CV & FORM PAGE ) ********************/

.Box {
    width: 90%;
    height: 100%;
    border: 1px solid black;
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: black;
}

.Box h1 {color: white; font-size: 30px; margin: 5px 0; padding: 0; line-height: 1.2;}
.Box h1 img {width: 30px; height: 30px; padding-right: 5px;}
.Box h2 {color: white; padding: 10px;}
.Box h3 {color: white;}

/********************************** EXTRA STUFF *******************************/


.GlowingButton {background-color: yellow;} /* MAKE BUTTON YELLOW DEPENDING ON PAGE */
.label {color: white;} /* LABEL TEXT FROM THE FORM */
.PictureOfMe {width: 200px;height: 250px;} /* MY PICTURE */
hr {height: 3px;background-color: white;} /* THE WHITE BAR */
footer p {color: white; text-align: center;} /* THE FOOTER */
