* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: rgba(224, 219, 219, 0.842);
    backdrop-filter: blur(100px);
}

.homepage_box {
    margin: auto;
    width: 85%;
    min-height: 93vh;
    background-color: rgba(245, 245, 245, 0.301);
    margin-top: 4.5%;
    margin-bottom: 4.5%;
    box-shadow: 0px 0px 9px 6px rgb(170, 164, 164);
    overflow: hidden;
    border-radius: 30px;
    /*----------------------------------------------------*/
}


/*----------------------------------------------------*/

header {
    display: flex;
    justify-content: space-between;
    margin-left: 10%;
    margin-right: 10%;
}

.firstname_logo {
    margin-top: 4%;
    font-family: League Spartin Thin, 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: bolder;
    font-size: 30px;
    color: blue;
    cursor: pointer;
}

.navigation_box {
    margin-top: 5%;
}

.links {
    padding: 15px;
    overflow: hidden;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-decoration: none;
    color: black;
    font-weight: bold;
    transition: 0.2s ease-in-out 0.2s;
}

.home_link {
    text-decoration: 3px underline blue;
    transition: 0.2s ease-in-out 0.2s;
}


/*----------------------------------------------------*/

.summary_info_box {
    margin-top: 8%;
}

.summary_info_box>pre {
    font-family: League Spartin Thin;
    font-size: 40px;
    letter-spacing: 4px;
    font-weight: bolder;
    padding-bottom: 7px;
    margin-left: 10%;
}

.summary_info_box>pre>span {
    color: blue;
}

.contact_button {
    margin-left: 10%;
    padding: 5px;
}

.contact_button>button {
    padding: 10px;
    width: 200px;
    font-size: 20px;
    font-weight: bold;
    background-color: blue;
    border: none;
    border-radius: 10px;
    color: white;
    transition: 0.2s ease-in-out 0.2s;
    cursor: pointer;
}

.my_image_box {
    float: right;
    margin-right: 15%;
    padding: 20px;
    background-color: rgb(0, 183, 255);
    border-radius: 50px;
    box-shadow: 0px 0px 9px 6px rgba(128, 128, 128, 0.705);
}

.prog_image {
    width: 300px;
    min-height: 250px;
    border-radius: 50px;
    box-shadow: 0px 0px 9px 6px rgba(128, 128, 128, 0.705);
    cursor: pointer;
}


/*----------------------------------------------------*/

.conclusion_box {
    margin-top: 7%;
    margin-left: 10%;
}

.footer_links {
    padding: 10px;
    font-size: 19px;
    font-family: League Spartin Thin;
    text-decoration: none;
    color: black;
    font-weight: bolder;
    transition: 0.2s ease-in-out 0.2s;
}

.conclusion_box>.footer_links>.github_icon {
    width: 40px;
    height: 35px;
    padding-top: 6px;
    transition: 0.2s ease-in-out 0.2s;
}


/*----------------------------------------------------*/

.footer_links:hover {
    text-decoration: 2px blue underline;
}

.footer_links>.github_icon:hover {
    border-bottom: 2px solid blue;
}

.links:hover {
    text-decoration: 3px underline blue;
}

.home_link:hover {
    text-decoration: 3px underline grey;
}

.contact_button>button:hover {
    background-color: gray;
}


/*----------------------------------------------------*/


/*---------About Page-------*/

.about_link {
    text-decoration: 3px underline blue;
    transition: 0.2s ease-in-out 0.2s;
}

.about_link:hover {
    text-decoration: 3px underline grey;
}


/*---------About Page Closed-------*/


/*----------------------------------------------------*/


/*---------Skills Page-------*/

.skill_certificate_link {
    text-decoration: 2px underline blue;
    transition: 0.2s ease-in-out 0.2s;
}

.skill_certificate_link:hover {
    text-decoration: 3px underline grey;
}

.skill_certificate_img {
    width: 250px;
    max-height: 150px;
    border-radius: 20px;
    box-shadow: 0px 0px 9px 6px rgba(128, 128, 128, 0.705);
    cursor: pointer;
    margin-top: 10px;
    margin-left: 10%;
}

.cv_button {
    margin-left: 10%;
    padding: 7px;
}

.cv_button>button {
    padding: 6px;
    width: 225px;
    font-weight: bold;
    background-color: blue;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    color: white;
    transition: 0.2s ease-in-out 0.2s;
    cursor: pointer;
}


/*---------Skills Page Closed-------*/


/*---------Contact Page-------*/

.contact_number_link {
    font-family: 'Oswald', sans-serif;
    font-size: 19px;
    letter-spacing: 4px;
    margin-left: 10%;
    color: blue;
    text-decoration: underline;
}

.contact_mail_link {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: 0px;
    margin-left: 10%;
    color: blue;
    text-decoration: 2px underline blue;
    transition: 0.2s ease-in-out 0.2s;
}

.contact_summary_info_box {
    margin-top: 10%;
}

.contact_info_heading {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: bolder;
    padding-top: 15px;
    padding-bottom: 20px;
}

.contact_conclusion_box {
    margin-top: 3%;
    margin-left: 10%;
}


/*---------Contact Page Closed-------*/


/*<!-- Mobile Navagation Menu -->*/


/* The Overlay (background) */

.menu_icon {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */
    display: none;
    height: 100%;
    width: 0;
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    background-color: rgb(0, 0, 0);
    /* Black fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/opacity */
    overflow-x: hidden;
    /* Disable horizontal scroll */
    transition: 0.5s;
    /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

header>span {
    display: none;
}


/* Position the content inside the overlay */

.overlay-content {
    position: relative;
    top: 25%;
    /* 25% from the top */
    width: 100%;
    /* 100% width */
    text-align: center;
    /* Centered text/links */
    margin-top: 30px;
    /* 30px top margin to avoid conflict with the close button on smaller screens */
}


/* The navigation links inside the overlay */

.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block;
    /* Display block instead of inline */
    transition: 0.3s;
    /* Transition effects on hover (color) */
}


/* When you mouse over the navigation links, change their color */

.overlay a:hover,
.overlay a:focus {
    color: #f1f1f1;
}


/* Position the close button (top right corner) */

.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}


/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */

@media screen and (max-height: 450px) {
    .overlay a {
        font-size: 20px
    }
    .overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}