/* default design Start Here  */


/* font-family: 'Roboto', sans-serif; */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

.container {
    max-width: 100%;
    margin: auto;
}

:root {
    --bg1---img: linear-gradient(rgba(6, 147, 128, 0.864), rgba(36, 10, 10, 0.914)), url(../image/bg1.jpg);
    ---bg1--color: #dde1e7;
    ---bg2--color: #657c9e;
    ---bgBottn--color: #a6a8ab;
    ---bgTop--color: #d3d7de;
    ---titelText--color: #2600fc;
    ---titelText2--color: #fcc100;
    ---titelText3--color: #ffffff;
    ---ptext--color: #06e3f3;
    ---btn--color: #e306f3;
    ---boxShadowOut--color: -3px -3px 7px #ffffff73, 3px 3px 5px rgba(94, 104, 121, 0.288);
    ---boxShadowInset--color: inset -3px -3px 7px #ffffff73, inset 3px 3px 5px rgba(94, 104, 121, 0.288);
    ---bgHover--color: magenta;
    ;
}

body {
    background: var(---mainBg--color);
    font-family: 'Roboto', sans-serif;
    background: var(--bg1---img);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

a {
    text-decoration: none;
    color: black;
}

.stiky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(---bgTop--color);
}


/* default design End Here  */


/* top Menu design Start Here  */

#topMenu {
    width: 100%;
    margin: auto;
    /* background: var(---bg1--color);    */
    padding-bottom: 50px;
    padding-top: 50px;
}

.profileMain {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    padding: 0.8rem;
    box-shadow: var(---boxShadowInset--color);
    transition: 0.7s;
}

.profileMain:hover {
    transform: scale(1.1);
}

.profile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    padding: 20px;
    box-shadow: var(---boxShadowInset--color);
    border: 4px solid var(---bg2--color);
    background-color: white;
    overflow: hidden;
}

.profile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    transition: 0.7s;
}

.profile img:hover {
    transform: scale(1.1);
}

.pName {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 20px;
    text-align: center;
    font-size: 1rem;
}

.pName h3 {
    font-size: 1.8rem;
    color: var(---titelText--color);
    text-transform: uppercase;
    font-weight: 800;
    text-shadow: 2px 2px 5px white;
}

.pName h4 {
    font-size: 2rem;
    color: var(---titelText2--color);
    margin: 5px 0 10px 0;
    font-weight: 900;
    text-shadow: 2px 2px 5px black;
    width: fit-content;
}

.pName p {
    width: 40%;
    font-size: 1rem;
    color: var(---ptext--color);
    text-shadow: 2px 2px 5px black;
}


/* top Menu design End Here  */


/* social section Design Start Here  */

#social {
    /* background-color: var(---bg2--color); */
    padding: 5px;
    margin: auto;
    padding-bottom: 75px;
}

.socialICon {
    margin: auto;
    width: 40%;
    display: block;
    display: flex;
    align-items: self-start;
    text-align: center;
    justify-content: space-between;
    flex-direction: column;
    transition: 0.7s;
}

.socialICon a {
    background-color: var(---boxShadowOut--color);
    margin: 10px 0 10px 0;
    padding: 10px 15px 10px 15px;
    border-radius: 5px;
    box-shadow: var(---boxShadowOut--color);
    color: var(---titelText3--color);
    text-transform: uppercase;
    font-weight: 400;
    transition: 0.7s;
    width: 100%;
    font-size: 1.2rem;
    text-shadow: 2px 2px 5px black;
}

.socialICon a:hover {
    background-color: var(---bgHover--color);
    transform: scale(1.1);
}

.socialICon a i {
    padding-right: 5px;
    transition: 0.7s;
}


/* social section Design End Here  */