
:root {
	--background-color: #eeeeee;
	/* --text-color: #eeeeee; */
	--text-color: #333333;
}

/* Body */
body {
	font-family: "Fira Sans", sans-serif;
	background-color: var(--background-color);
	margin: 0;
	font-style: normal;
	font-weight: 200;
    color: var(--text-color);
    position: relative;
    min-height: 100vh;
    box-sizing: border-box;
    padding-bottom: 170px;
    
    /* height: 300px; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* filter: blur(5px); */
    /* padding-right: 5%; */
}

p {
    font-size: 1.20rem;
}

.background-home {
    background-image: url("images/background-with-line-white.png");
}

.background-about {
    background-image: url("images/res-1-blur.png");
}

.background-roles {
    background-image: url("images/background-3-blur.png");
    /* background-image: linear-gradient(rgb(0, 0, 0, 0.15)), url("images/background-3-blur.png"); */
}

a {
  color: inherit;
}

.container {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #ffffff;
    /* margin-top: 100px; */
}

#nav {
    padding-left: 5%;
    padding-right: 5%;
}


#Share {
  cursor: pointer;
}

/* section {
  padding-bottom: 50px;
} */

.profile {
  align-content: center;
  text-align: center;
  color: var(--text-color);
  margin-left: auto;
  margin-right: auto;
  max-width: 4in;
}

.profile_img {
  /* border-radius: 50%; */
  max-width: 3in;
  /* border: white solid 5px; */
  /* overflow: hidden; */
}


.role-details {
    display: flex;
    align-items: start;
    gap: 10px;

    /* margin-left: 200px;
    margin-right:200px; */

    /* border: 3px solid lightgrey; */
    /* border-radius: 5px; */
    /* background-color: #eeeeee; */

    padding: 5px;
    margin-bottom: 10px;
}

#contact {
    position: absolute;
    bottom: 0;
    width: 100%;

    text-align: center;
    padding-bottom: 10px;
}

#contact a {
  text-decoration-line: none;
}

#contact a:hover {
  text-decoration-line: underline;
}

#contact {
    color: #eeeeee;
}


.background-home #contact {
    color: #333333
}

#about {
    display: flex;
    align-items: start;
    gap: 20px;
    justify-content: space-evenly;
    font-size: 1.20rem;
}

.active_link {
    text-decoration: underline;
    text-underline-offset: 7px;
}

nav ul {
    list-style: none;
    width: auto;
    display: flex;
    align-items: center;
    margin-top: 0;
    padding: 0;
    gap: 30px;
}

nav ul li {
    font-size: 20px;
    letter-spacing: 2px;
    /* margin-right: 30px; */
    /* margin-top: 15px; */
    font-weight: bold;
    transition: all 0.3s linear;
}
ul li a {
    text-decoration: none;
}

.role {
    margin-top: 40px;
}

.role-logo {
    height: 70px;
}

.role-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.role-image {
    width: 300px;
    align-self: center;
}

.role a {
    text-decoration: none;
}

@media (min-width: 768px) {
    
    /* Navigation */
    nav {
        height: 125px;
        width: 100%;
        /* background-color: var(--background-color); */
        /* color: var(--text-color); */
        color: #eeeeee;
        position: relative;
        margin-bottom: 30px;
    }

    nav ul {
        height: 125px;
    }

    nav .nav_img {
        position: absolute;
        /* top: 50%; */
        left: 50%;
        transform: translate(-50%, 0);
        height: 125px;
        /* width: 400px; */
        
    }

    .nav_icon_list {
        font-size: 30px;
        margin-top: 8px;
        margin-left: auto;
    }

    .nav_icon {
        margin-left: 10px;
    }

    ul li a:hover {
        color: #3784CB;
        /* color: #3CA7CB; */
    }
    
    .background-about .container {
        margin-top: 100px;
    }

    .about_img {
        max-width: 25%;
        align-self: center;
    }

    .about_text {
        width: 60%;
    }

    .role_text {
        width: 50%;
    }
    
    .role {
        display: flex;
        align-items: start;
        gap: 20px;
        padding-left: 5%;
        padding-right: 5%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .background-home {
        background-image: url("images/reservoir-blur-20.png");
    }

    nav .nav_img {
        width: 100%;
        margin-top: 10px;
    }

    nav ul {
        flex-direction: column;
        margin-top: 10px;
    }

    nav ul li {
        margin: 0;
    }

    #about {
        flex-direction: column;
    }

    .about_img {
        width: 100%;
    }

    .profile {
        /* width: 100%; */
        padding-left: 20px;
        padding-right: 20px;
        background-color: #eeeeee;
    }

    .background-home #contact {
        color: #eeeeee;
    }
}