*{
    margin: 0;
    padding: 0;
}
.sidebar{
    background-color: rgb(182, 176, 176);
width: 434px;
padding: 60px;
height: 100vh;

}
.slidebar nav{
    padding: 45px;
}
.sidebar nav li{
list-style: none;
font-size: 30px;
padding: 33px 0;
}
.sidebar nav li a{
    text-decoration: none;
    color: black;
}
.main{
    /*background-color: rgb(6, 174, 14);*/
width: 90vw;
height: 50vh;
}
.container{
    display: flex;
}
.infocontainer{
   /* background-color: white;*/
    height: 48vh;
    width: 80vw;
    margin: 144px auto;
    color: orangered;
    justify-content: space-around;
}

.divinfo{
display: flex;
justify-content: center;
align-items:left;
flex-direction: column;
}
.hello{
font-size: 65px;
}
.name{
font-size: 50px;
font-weight: bold;
font-family: 'fira sans',sans-serif;
}
.about{
font-size: 40px;
/*color: rgba(3, 21, 15, 0.655);*/
}
.buttons button{
    padding: 10px 15px;
    border-radius: 22px;
    color: aliceblue;
    background-color: brown;
    font-size: 23px;
    font-weight: bold;
    margin: 0 3px;
    cursor: pointer;


}
.buttons button:hover{
background-color: aliceblue;
color: brown;
}
.devpic img{
    width: 281px;
height: 40vh;
float: right;
margin: 10px;
justify-content: flex-end;
top: 0;
left: 0;
display: flex;
align-items: flex-start;
}
.contactform{
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contactformh3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.contactform p {
  font-size: 16px;
  margin-bottom: 20px;
}

.contactform label {
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
}

.contactform input,
.contact-form-container textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.contactform button {
  width: 100%;
  padding: 12px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 26px;
  cursor: pointer;
}

.contactform button:hover {
  background-color: #c81075;
}
.services-section {
  padding: 60px;
  background-color: #fff;
}

.services-section h2 {
  text-align: center;
  font-size: 32px;
  color: #333;
  margin-bottom: 40px;
}

.services-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.service-box {
  flex: 1;
  min-width: 250px;
  background-color: #f2f2f2;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box h3 {
  color: #800000;
  margin-bottom: 15px;
  font-size: 22px;
}

.service-box p {
  color: #555;
  font-size: 16px;
  line-height: 1.5;
}

