* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: 'Playfair', serif;
  font-size: 62.5%;
}

body {
  font-family: 'Lora', serif;
  font-size: 16px;
  background-color: #e7e7e7;
}

.container {
  max-width: 900px;
  margin: 100px auto;
  padding: 0 20px;
}
h1 {
  color: white;
  font-family: 'Playfair', serif;
  font-size: 3.5rem;
  margin-bottom: 10px;
}
h2 {
  color: #75ba75;
}
a {
  color: #888888;
  text-decoration: none;
}
p {
  color: #888888;
}
a:hover {
  text-decoration: underline;
}
form {
  display: flex;
  flex-direction: column;
}
label {
  margin-top: 10px;
  color: #888888;
}
input,
textarea,
button {
  padding: 10px;
  border: 1px solid #75ba75;
  border-radius: 5px;
  resize: none;
}

button {
  background-color: #75ba75;
  color: white;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.4rem;
}
.mesaj {
  margin-top: 30px;
  margin-bottom: 10px;
}
button:hover {
  background-color: #5cb85c;
}
iframe {
  margin: 30px 0;
  width: 100%;
  height: 400px;
  border: none;
}
ul {
  list-style: none;
  padding: 0;
  color: #888888;
}
.alert {
  text-align: center;
}
