body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  font-family: sans-serif;
  line-height: 1.5;
  padding: 20px;
}

.container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.project-details{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.title{
  text-align: center;
}

.image {
  flex: 1;
  border-radius:10px;
  max-height: 70vh;
  max-width: 100%;
}

.description{
  flex: 1;
}

.form{
  display: flex;
  flex-direction: column;
  max-width: 300px;
}

input{
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #bdc3c7;
}

.submit-button{
  background-color: #3498db;
  outline: none;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 6px;
}