/* Start Global rules */
*{
    margin: 0;
    padding: 0;
}
.container {
width: 80%;
    height: 100%;
padding-left: 10%;
padding-right: 10%;
padding-top: 30px;
padding-bottom: 30px;
}
body{
    margin: 0;
    padding: 0;
    color: #fff;
    font-family: monospace;
}
/* End Global rules */
/* Start Navbar */
nav .container{
    display: flex;
    justify-content: space-between;
    background-color: #2c2c2c;
}
nav .container *{
    display: inline;
}
.project-sections{
    width: 20%;
    display: flex;
    justify-content: space-evenly;
}
.project-sections h4 {
    margin: 10px;
    font-size: 14px;
}
.project-sections h4 a{
    text-decoration: none;
    color: #fff;
}
nav h3 {
    font-size: 20px;
}
/* End Navbar */
/* Start Header */
Header {
    background-color: #45b080;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}
header * {
padding-top: 20px;
}
header img {
    border-radius: 50%;
}
header h1 {
    font-size: 30px;
}
header p {
    font-size: 15px;
}
/* End Header */
/* Start Portfolio */
.portfolio {
    color: #000;
    padding: 30px 50px 50px;
    text-align: center;
    font-size: 20px;
}
.portfolio * {
    padding-top: 20px;
    }
    .portfolio .imgs {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 15px;
    }
    @media (max-width:1000px) {
        .portfolio .imgs {
            display: block;
            grid-template-columns: none;
        }
    }
/* End Portfolio */
/* Start About */
.about {
    background-color: #45b080;
    text-align: center;
    padding: 30px 50px 50px;
}
.about * {
    padding-top: 20px;
}
.about .headings h2 {
font-size: 35px;
letter-spacing: 2px;
}
.about .paragraphs {
    display: flex;
    justify-content: center;
}
.about p{
width: 300px;
}
.about p:first-child {
    border-right: white 2px solid;
}
.about button {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
    border-width: 3px;
    width: 15%;
    border-radius: 5%;
    margin: 50px auto 0;
    text-align: center;
    font-size: 25px;
}
/* End About */
/* Start-Contact */
.contact {
    color: #000;
    padding: 30px 50px 50px;
}
.contact .headings {
    text-align: center;
    font-size: 20px;
}
.contact .headings * {
    padding-top: 20px;
}
.contact .form {
    padding-top: 60px;
}
.contact .form *{
display: block;
padding-bottom: 10px;
margin-left: 500px;
}
.contact .form input:last-child {
    height: 70px;
}
.contact .form input {
width: 500px;
border-top: none;
border-left: none;
border-right: none;
}
.contact .form label,button {
    margin-top: 10px;
}
.contact .form button {
    background-color: #45b080;
    color: #ffffff;
border-color: #45b080;
height: 30px;
width: 50px;
}
/* End-Contact */
/* Start Footer */
.footer {
    display: flex;
    justify-content: space-evenly;
    background-color: #2c2c2c;
    color: white;
    margin-top: 30px;
    padding-bottom: 0;
    margin-bottom: 0;
}
.footer a {
    color: #00cc47;
}
.footer div {
    text-align: center;

    width: 250px;
}
.footer .icons {
    padding-top: 10px;
}
.footer .icons * {
    border: 3px solid #ffffff;
    border-radius: 50%;
    padding: 10px;
}
/* End Footer */
/* Start Copyright */
.copyright {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 17.0px;
}
/* End Copyright */