/* CSS */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: poppins;
}

#main {
    background: black;
    width: 100%;
    height: 700px;

    background-image: url("/images/background.jpeg");
    background-size: initial;
    background-position-x: -500px;
    background-position-y: -100px;
    background-repeat: no-repeat;
}

hep {
    display: block;
    margin-top: 0.67em;
    margin-bottom: 0.67em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
    font-size: 3em;
    color: white;
}

hep1 {
    display: block;
    margin-top: 0.67em;
    margin-bottom: 0.67em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
    font-size: 3em;
    color: black;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 5px 10px 30px rgba(0, 0, 0, 0);
    z-index: 1;
}

.menu {
    list-style: none;
    display: flex;
}

.menu li a {
    height: 40px;
    line-height: 43px;
    margin: 3px;
    padding: 0 22px;
    font-size: 0.8em;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
}

a {
    text-decoration: none;
}

.centerWord {
    font-size: 30px;
    /* background-color: black; */
    /* color: white; */
    font-weight: 500;
    text-align: center;
}

.centerText {
    font-size: 60px;
    text-align: center;
    margin-top: 5%;

}

.centerText2 {
    font-size: 45px;
    text-align: center;
    margin-top: 10%;

}

/* content part */
/* about me */
.content-background {
    background-color: rgb(206, 208, 209);
    padding: 15px;
}

.About-me {
    display: flex;
    background-color: white;
    box-shadow: 0 3px 10px rgb(0, 0, 0, 30%);
}

.About-me>div {
    font-family: poppins;
    background-color: white;
    color: black;
    width: 50%;
    margin: 20px;
    text-align: center;
    line-height: 75px;
    font-size: 25px;
}

.upper-container {
    display: flex;
    /* justify-content: space-around; */
    margin-top: 30px;
    /* padding: 20px; */
    /* width: 50%; */
}

.upper-container img {
    align-items: center;
    height: 250px;
    width: 250px;
    margin-left: 2%;
    margin-right: 5%;
}

.upper-container>div p {
    color: grey;
    font-size: 12pt;
    line-height: 50px;
}

.skill {
    text-align: left;
    margin-left: 2%;
    margin-top: 2%;
}

.skill h1 {
    font-size: 20pt;
}

.skill p {
    font-size: 12pt;
    color: grey;
    margin: 10px;
}

.bars {
    display: flex;
    background-color: rgb(159, 218, 241);
    margin-bottom: 5px;
}


.right-container>h1,
p {
    text-align: left;
    background-color: white;
    line-height: normal;
    word-spacing: 3px;
}

.right-container>h1 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 2rem;
    border-bottom: 5px solid blue;
    border-bottom-width: 5px;
    margin-bottom: 2rem;
}

.right-container>p {
    color: rgb(68, 68, 68);
    font-size: 20px;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    max-width: 100%;
    max-height: 100%;
}

.footer-c{
    background-color: black;
    justify-content: center;
    align-items: center;
    height: 24vh;
    margin: 0;
    max-width: 100%;
    max-height: 100%;
}

h1.contact {
    color: black;
    text-align: center;
    font-family: sans-serif;
    font-weight: 700;
    font-size: 50px;
}

.menu li a:hover {
    border-bottom: white solid 2px;
    padding-bottom: 10px;
    font-weight: 700;
    transition: ease 0.3s;

}

.card.hover:hover {
    transition: ease 0.2s;
    transform: scale(1.03);
}

input[type=submit]:hover {
    background-color: darkblue;
    transition: ease 0.5s;
}

