* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: sans-serif;
}
.container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100px;
  background-color: rgb(48, 47, 47);
}
.wel {
  font-size: 1.8rem;
  font-weight: 500;
  color: goldenrod;
}
.navbar {
  font-size: 1.2rem;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: flex-end;
  gap: 30px;
  list-style: none;
}
a {
  color: goldenrod;
  text-decoration: none;
}
#home {
  display: flex;
  justify-content: center;
  background-image: url("img/background.jpg");
  width: 100%;
  height: 700px;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.name {
  font-size: 5.5rem;
  font-weight: 500;
  color: rgb(207, 156, 27);
}
#about {
  width: 60%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 50px;
  border: 2px solid goldenrod;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: 150px;
  background-color: rgb(255, 255, 255);
}
.infor {
  display: flex;
  flex-direction: row;
}
.image img {
  width: 200px;
}
.txt {
  font-size: 2.7rem;
  font-weight: 500;
}
.abt-me {
  font-size: 1.3rem;
  width: 80%;
  margin-top: 20px;
}
.style-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 750px;
  margin-top: 70px;
}
.style-table th,
.style-table td {
  border: 2px solid #000;
  padding: 8px 12px;
  text-align: left;
}
.style-table th {
  text-align: center;
}
#contact {
  width: 60%;
  margin: auto;
  margin-top: 150px;
}

.form-style {
  background: #ffffff;
  border: none;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-style h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #2c3e50;
}

label {
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
  color: #34495e;
}

input[type="text"],
input[type="password"],
input[type="tel"],
input[type="date"],
textarea,
select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: 0.3s;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #3498db;
  box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}

label[for="male"],
label[for="female"] {
  font-weight: normal;
}

input[type="submit"],
input[type="reset"] {
  width: 48%;
  padding: 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

input[type="submit"] {
  background: #27ae60;
  color: white;
}

input[type="reset"] {
  background: #e74c3c;
  color: white;
}

input[type="submit"]:hover {
  background: #219150;
}

input[type="reset"]:hover {
  background: #c0392b;
}
textarea {
  resize: vertical;
  min-height: 80px;
}
footer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  background-color: rgb(48, 47, 47);
  margin-top: 150px;
  color: rgb(218, 165, 32, 0.8);
}
