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

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;

  height: 100vh;
  background-color: aliceblue;
}
main {
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 100vh; */
  background-color: aliceblue;
}

#about {
  display: block;
  padding: 20px;

}

nav {
  display: flex;
  justify-content: center;
  padding: 10px;
  margin-top: 5px;
  font-size: large;
  font-weight: bold;
}
nav a {
  margin: 0 15px;

}
article {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: aliceblue;
}

article img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
}

header h2 {
  /* padding: 20px; */
  /* width: 50%; */
  /* background-color: #007bff; */
  /* color: white; */
  padding: 10px;
}
header p {
  width: 400px;
}
li {
  list-style: none;
}
ul {
  padding: 0;
  margin: 0;
}
nav ul li {
  display: inline;
  margin-right: 5px;
  border: 1px solid #333;
  border-radius: 5px;
  padding: 1px 4px;
  list-style: none;
}
a {
  text-decoration: none;
}
a,
a:active,
a:visited {
  color: black;
}

a:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

.info {
  display: flex;
  gap: 40px;
}

.info h3 {
  text-align: start;
}

@media (max-width: 750px) {
  body {
    margin: 0;
    padding: 0;
  }
  article {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  header p {
    white-space: wrap;
    width: 100%;
  }
  .info {
    display: flex;
    justify-content: center;
  }
  .info section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
}

form {
  background: white;
  padding: 2rem;
  margin-top: 3rem;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

input,
textarea,
button {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.25rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.error {
  color: red;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.success {
  margin-top: 1rem;
  color: green;
  font-weight: bold;
}

button {
  background: black;
  color: white;
  cursor: pointer;
  margin-top: 1rem;
  border: none;
  transition: background 0.2s;
}

button:hover {
  background: #0056b3;
}
