* {
    margin: 0%;
    padding: 0%;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    box-sizing: border-box;
}
body {
    background-color: gray;
}
.nav-bar {
    background-color: rgb(36, 36, 36);
    padding-left: 30px;
    padding-right: 10px;
    padding-bottom: 35px;
    padding-top: 35px;
}
.navdiv {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-size: 29px;
    font-weight: 600;
    color: orange;
}
ul {
    position: relative;
    width: 340px;
    left: 29%;
}
li {
    list-style: none;
    display: inline;
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-right: 20px;
}
ul li a {
    color: white;
    transition: 0.3s;
}
ul li a:hover {
    color: orange;
}
.text {
    position: relative;
    padding-top: 20px;
    left: 310px;
    width: 900px;
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    color: white;
}
.text p {
    font-size: 25px;
    font-weight: normal;
    padding-top: 30px;
}
.text button {
    padding-top: 12px;
    padding-right: 25px;
    padding-bottom: 12px;
    padding-left: 25px;
    font-size: 16px;
    margin: 30px;
    border-radius: 5px;
    background-color: orange;
    border: none;
    color: white;
    transition: 0.3s;
}
.text button:hover {
    background-color: darkorange;
}
.wrapper {
    display: flex;
    align-items: center;
    width: 1000px;
}
.container {
    position: relative;
    left: 363px;
    width: 240px;
    margin: 15px;
    padding-right: 20px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: white;
}
.container p {
    font-size: 17px;
    font-weight: normal;
}
h2 {
    text-align: center;
    padding-top: 60px;
    color: white;
}
.feedback {
    background-color: rgb(36, 36, 36);
    color: white;
    position: relative;
    padding: 30px;
    margin: 20px;
    margin-bottom: 30px;
    left: 565px;
    width: 350px;
    text-align: center;
    border-radius: 10px;
}
.About {
    background-color: rgba(36, 36, 36);
    color: white;
    padding-top: 80px;
    padding-bottom: 40px;
}
.Aboutmain {
    position: relative;
    left: 350px;
    width: 900px;
}
.About-div {
    font-size: 50px;
    font-weight: 700;
}
.About-div #line {
    color: orange;
    position: relative;
    padding-bottom: 50px;
    font-size: 50px;
    font-weight: bold;
}
.About-div p {
    font-size: 25px;
    font-weight: normal;
    padding-bottom: 40px;
}
.About h4 {
    font-size: 20px;
    padding-bottom: 10px;
}
.About p {
    padding-bottom: 20px;
}
.portfolio {
    color: white;
}
.portfolio-item {
    padding-top: 130px;
    padding-left: 55px;
    padding-bottom: 20px;
    font-size: 50px;
    font-weight: 700;
}
.portfolio-item #line2 {
    color: orange;
}
.container2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.box {
    position: relative;
    right: 15px;
    width: 300px;
    margin: 30px;
    box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.2);
}
.box img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    transition: 0.4s;
}
.box h1 {
    font-size: 25px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: 0.2s;
}
.box:hover {
    transform: scale(1.1);
}
.box h1:hover {
    opacity: 1;
    transform: scale(1.1);
}
.box:hover img {
    transform: scale(1.1);
}
.contactmain {
    background-color: rgba(36, 36, 36);
    padding-top: 30px;
    padding-bottom: 10px;
}
.contact {
    color: white;
    width: 1000px;
}
.contact h1 {
    font-size: 50px;
    font-weight: 700;
    position: relative;
    left: 510px;
}
.contact p {
    padding-bottom: 30px;
    font-weight: 700;
    font-size: 50px;
    color: orange;
    position: relative;
    left: 510px;
}
.contact form {
    background-color: #333;
    position: relative;
    left: 49%;
    margin: 20px;
    padding: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 500px;
    height: 400px;
    border-radius: 10px;
}
.contact input {
    width: 95%;
    padding: 18px;
    margin: 10px;
    font-size: 15px;
    background-color: #444;
    border-radius: 5px;
    border: none;
}
.contact textarea {
    background-color: #444;
    border: none;
    border-radius: 5px;
    width: 95%;
    height: 30%;
    font-size: 15px;
    padding: 18px;
    margin: 10px;
}
.contact button {
    width: 95%;
    padding: 18px;
    font-size: 15px;
    margin: 10px;
    border-radius: 5px;
    background-color: orange;
    border: none;
    color: white;
    transition: 0.3s;
}
.contact button:hover {
    background-color: darkorange;
}
.copyrightdiv {
    background-color: rgb(23, 23, 23);
    color: white;
    text-align: center;
    padding-bottom: 30px;
    padding-top: 30px;
}