*{
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
}

/* navbar */
.navbar{
    display: flex;
    justify-content: center;
    height: 50px;
    align-items: center;
    position: sticky;
    top: 0;
}
.navbar::before{
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    z-index: -1;
}
.navbar ul{
    display: flex;
    list-style: none;
}
.navbar ul li{
    font-size: 1.1rem;
}
.navbar ul li a{
    padding: 5px 20px;
    text-decoration: none;
    color: white;
}
.navbar ul li a:hover{
    border-bottom: 2px solid #FFFFFF;
}

/* Home Section */
#home{
    display: flex;
    flex-direction: column;
    height: 650px;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}
#home::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url('bg.jpg') no-repeat center center/cover;
    height: 700px;
    width: 100%;
    z-index: -1;
    opacity: .8;
}
.heading{
    color: white;
    font-size: 2.7rem;
    font-family:Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif" Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", "sans-serif";
    text-align: center
    transform: scale(1,1.3);
	margin-left: 20px;
}

/* Portfolio Section */
#portfolio{
    display: flex;
    flex-direction:column;
    background-color: #CF1013;
}
#portfolio h1{
    margin: 10px;
}
.gallery{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.gallery img{
    width: 300px;
    height: 300px;
    padding: 10px;
    margin: 5px;
}
.gallery img:hover{
    background-color: white;
    cursor: pointer;
}

/* Education Section */
#education{
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
}
#education h1{
    margin: 60px;
	color: #1F1F1F;
}
.columns{
    display: grid;
    grid-template-columns: auto auto;
    padding-left: 50px;
}
.box{
    height: 250px;
    width: 400px;
    background-color: #1F1F1F;
    border-radius: 20px;
    margin: 10px;
    padding: 20px;
}
.box h2{
    color: darkgray;
    font-size: 2rem;
    margin-bottom: 40px;
	text-align: center;
}
.box p{
    color: white;
    font-size: 1.1rem;
}

/* About Section */
#about{
    display: flex;
    flex-direction: column;
    text-align: justify;
    height: 500px;background-color: #72191B;
}
#about h1{
    color: #E9E5E5;
    margin: 55px;
	margin-left: 540px;
	margin-top: -310px;
}
.about{

    align-items: center;
    margin-bottom: 20px;
	margin-left: 530px;
	margin-top: -50px;
}

.mypic{
	height: 400px;
	width: 400px;
	background-color: #FFFFFF;
	margin-top: 60px;
	margin-left: 100px;
	background-image: url("images/image.jpg")
}

.name{
    padding: 10px;
	
}
.name h2{
    font-size: 30px;
	color: #E9E5E5;
}
.name2 {
	color: #FFFFFF;
}
.name p{
    font-size: 1.2rem;
}

/* Contact Section */
#contact{
    display: flex;
    flex-direction: column;
    background-color: #000000;
}
#contact h1{
    margin: 50px ;
}
.form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.input{
    padding: 15px 20px;
    margin: 15px;
    width: 40%;
  
    
}
#message{
    margin: 15px;
    padding: 10px;
	height: 200px;
	background-color:  color: #05A300;
}
#submit{
    padding: 15px 20px;
    margin: 30px;
    width: 15%;
    border-radius: 20px;
    background-color: #000000dc;
    color: white;
    border: none;
    outline: none;
}
#submit:hover{
    background-color: #C1A7EE;
    color: white;
    cursor: pointer;
}


/* Footer Section */
#footer{
    display: flex;
    flex-direction: column;
    background-color: yellowgreen;
}
#footer h3{
    margin: 60px;
	color: #1F1F1F;
	margin-left: 400px;
	font-size: 30px;









