/**Variables**/
:root{
    --primary_color: #23395d;
    --secondary_color: #2DCB70;
    --tertiary_color: #ffffff;
}
/**Variables**/

/**Tag**/
* {
    font-family: "Roboto", sans-serif;
}

body {
    background-color: var(--primary_color);
    margin: 0px;
}

section {
    display: flex;
    flex-direction: column;
    border-radius: 3px;
    margin: 10px auto;
}

header {
    background-color: var(--tertiary_color);
    border: solid 1px var(--primary_color);
    height: 100px;
    position: sticky;
    top: 0;
    transition: top 0.2s ease-in-out;
    width: 100%;
}

footer {
    background-color: var(--tertiary_color);
    border: solid 1px var(--primary_color);
    height: 100px;
}

/**Tag**/

/**Header**/
.header_title {
    margin-top: auto;
    margin-bottom: auto;
    color: var(--primary_color);
}

.menu_icon {
    display: block;
    width: 64px;
    height: 64px;
}

/**Header**/

/**Text Format**/
.white_title {
    font-size: xx-large;
    font-weight: bold;
    color: var(--tertiary_color);
    margin: 16px 0px
}

.green_title {
    font-size: xx-large;
    font-weight: bold;
    color: var(--secondary_color);
    margin: 16px 0px
}

.paragraph_text {
    text-align: justify;
    margin-bottom: 0px;
    color: var(--tertiary_color);
}

.information_text {
    text-align: center;
    color: var(--primary_color);
    margin: 0px;
}

.information_text_bold {
    text-align: center;
    color: var(--primary_color);
    margin: 0px;
    font-weight: bold;
}

.role_text {
    text-align: center;
    color: var(--secondary_color);
    margin: 0px;
}

.label_text {
    text-align: center;
    color: var(--tertiary_color);
    margin-left: 10px;
}

.social_link {
    text-decoration: none;
}

/**Text Format**/

/**Div Format**/
.box {
    margin: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.green_border_div {
    margin: 10px 10px;
    border: solid 1px var(--secondary_color);
    border-radius: 15px;
    padding: 10px;
}

.white_background_div {
    padding: 20px;
    margin: 20px auto;
    background-color: var(--tertiary_color);
    border-radius: 15px;
}

.white_background_chip {
    padding: 5px;
    background-color: var(--tertiary_color);
    border-radius: 15px;
    margin: 10px auto;
}

.flex_end_div {
    display: flex;
    justify-content: end;
    margin-left: 20px;
}

.no_padding {
    padding: 0;
}

/**Div Format**/

/**Image Format**/
.social_logo {
    width: 25px;
    height: 25px;
}

.company_logo {
    width: 100px;
    height: 100px;
}

.home_logo {
    width: 100px;
    height: 100px;
}

.language_logo{
    cursor: pointer;
    width: 48px;
    height: 48px;
    margin: 10px;
}

/**Image Format**/

/**List Format**/
.markerless {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

/**List Format**/

/**Button format**/
.green_button {
    background-color: var(--secondary_color);
    border-radius: 15px;
    padding: 10px;
    color: var(--tertiary_color);
    margin: 10px;
    cursor: pointer;
}

.green_button_link {
    background-color: var(--secondary_color);
    border-radius: 15px;
    padding: 10px;
    color: var(--tertiary_color);
    margin: 10px;
    text-decoration: none;
    text-align: center;
    border: solid 1px #000000;
}

.blue_button {
    background-color: var(--primary_color);
    border-radius: 15px;
    padding: 10px;
    color: var(--tertiary_color);
    margin: 10px;
    cursor: pointer;
}

/**Button format**/

/**Generic**/
.centered {
    display: grid;
    place-items: center;
}

.on_top {
    display: grid;
    place-items: top;
}

.always_flex_horizontal_between {
    display: flex;
    justify-content: space-between;
}

.always_flex_horizontal_around {
    display: flex;
    justify-content: space-around;
}

.vertical_flex {
    display: flex;
    flex-direction: column;
}

.margin_auto {
    margin: auto;
}

.visible_only_large_screen{
    display: none;
}

.anchor{
    padding-top: 100px; 
    margin-top: -100px;
}

.presentation{
    margin-bottom: 30px;
}

/**Generic**/


/* Mobile Styles */
@media only screen and (max-width: 400px) {

    /**Generic**/
    .paginated {
        width: 95%;
    }

    .paginated_for_list {
        width: 90%
    }

    .no_padding_on_mobile {
        padding: 0;
    }

    /**Generic**/

    /**Header**/
    .menu_icon {
        width: 32px;
        height: 32px;
    }

    .language_logo{
        width: 32px;
        height: 32px;
    }

    /**Header**/

    /**Image Format**/
    .about_me_photo {
        width: 200px;
        height: 300px;
    }

    .main_photo {
        width: 250px;
        height: 250px;
    }

    .company_logo {
        width: 75px;
        height: 75px;
    }

    /**Image Format**/

}

/* Tablet Styles */
@media only screen and (min-width: 401px) and (max-width: 960px) {

    /**Generic**/
    .paginated {
        width: 90%;
    }

    .paginated_for_list {
        width: 80%
    }

    .no_padding_on_mobile {
        padding: 0;
    }

    .two_column_only_large_and_medium_screen {
        width: 50%;
    }

    .flex_horizontal_only_large_and_medium_screen_space_around {
        display: flex;
        justify-content: space-around;
    }

    /**Generic**/

    /**Text Format**/
    .base_text {
        font-size: 20px;
    }

    /**Text Format**/

    /**Image Format**/
    .about_me_photo {
        width: 300px;
        height: 450px;
    }

    .main_photo {
        width: 300px;
        height: 300px;
    }

    /**Image Format**/
}

/* Desktop Styles */
@media only screen and (min-width: 961px) {

    /**Generic**/
    .paginated {
        width: 80%;
    }

    .paginated_for_list {
        width: 70%
    }

    .flex_horizontal_only_large_screen_space_around,
    .flex_horizontal_only_large_and_medium_screen_space_around {
        display: flex;
        justify-content: space-around;
    }

    .flex_horizontal_only_large_screen_space_between {
        display: flex;
        justify-content: space-between;
    }

    .two_column_only_large_screen,
    .two_column_only_large_and_medium_screen {
        width: 50%;
    }

    .three_column_only_large_screen {
        width: 33%;
        margin: 0px;
        padding: 0px;
    }

    .four_column_only_large_screen {
        width: 25%;
        margin: 0px;
        padding: 0px;
    }

    .visible_only_large_screen{
        display:block;
    }
    /**Generic**/

    /**Header**/
    .menu {
        display: block;
        margin: auto 10px;
        text-decoration: none;
        font-size: 24px;
    }

    .menu_icon {
        display: none;
    }

    /**Header**/

    /**Text Format**/
    .base_text {
        font-size: 20px;
    }

    /**Text Format**/

    /**Image Format**/
    .social_logo {
        width: 50px;
        height: 50px;
    }

    .about_me_photo {
        width: 350px;
        height: 525px;
    }

    .main_photo {
        width: 300px;
        height: 300px;
    }



    /**Image Format**/
}