body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  background-color: #fefff0;
}

.contact-container {
  width: 70%;
  height: 100%;
  margin: 50px auto;
  padding: 20px;
  background-color: rgb(204, 23, 141);
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  margin-top: 4rem;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 1000;
}

h1{
  font-size:9rem;
  display: flex;
  overflow: visible;
  color: #594C53;
}

.navbar {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.navbar a {
  color: #594C53;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  transition: color 0.3s;
}

.navbar a:hover {
  color: rgb(204, 23, 141);
}

h2 {
  text-align: left;
  margin-bottom: 20px;
  font-size: 24px;
  direction: ltr;
  color: #fefff0;
}

.form-group {
  margin-bottom: 15px;
  margin-left:300px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #fefff0;
  border-radius: 4px;
  font-size: 16px;
}

.form-group button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 4px;
  background-color: #37B2E6;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.form-group button:hover {
  background-color:#594C53;
}


::-webkit-scrollbar{
  width:15px;
}
::-webkit-scrollbar-track{
  background-color:#fefff0;
  ;
}
::-webkit-scrollbar-thumb{
  background: #594C53;
  border-radius: 8px;
}

.contact{
color: #594C53;
margin-top:10%;
text-decoration: none;
font-size: 2rem;
font-weight: 700;
transition: color 0.3s;
display: flex;
align-items: center;
flex-direction: row;
width: 80%;
justify-content: space-evenly;
margin-bottom:5%;
margin-left:10%;
margin-right:10%;
}

.instagram a {
  color: #594C53;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  transition: color 0.3s;
}

.instagram a:hover {
  color: rgb(204, 23, 141);
}


