* {
  scroll-behavior: smooth;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #f2eae0;
  color: black;
}
h1 {
  color: #ecb159;
}
header {
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
}
header > h1 {
  margin-top: 100px;
}
.dropdown-content a {
  text-decoration: none;
  font-size: 15px;
  color: #1f2933;
}
.dropdown-content {
  background-color: #b67352;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: sticky;
  z-index: 100;
  top: 0;
  border-radius: 0 0 15px 15px;
}
.dropdown-list {
  display: flex;
  gap: 45px;
  list-style-type: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.about-me {
  margin: 25px;
}
#about-me-btn,
#about-me-btn a {
  background: #b67352;
  padding: 15px 20px;
  color: #ffffff;
  text-decoration: none;
  border-radius: 15px;
  border: none;
  cursor: pointer;
}

.header {
  margin: 50px;
}
.header > h1 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
}
.header > p {
  font-size: 2rem;
  padding: 10px;
  margin: 5px;
}
.about-me p {
  font-size: 1.2rem;
  line-height: 1.3;
}
.my-skills {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  padding: 20px 0;
}
.skill-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #b67352;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 10px;
  box-sizing: border-box;
}
.projects h1 {
  margin: 10px;
  padding: 25px;
}
.contact-box > p a {
  text-decoration: none;
  color: #bd4d16;
}
.contact-box > p a:active {
  text-decoration: none;
  color: #b25120;
}
.contact-box > p a:visited {
  text-decoration: none;
  color: #000000;
}
#contacts {
  text-align: center;
  padding: 15px;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.contact-box {
  max-width: 500px;
  width: 100%;
  padding: 20px;
  text-align: center;
  border-radius: 2em;
  box-shadow: 20px 15px 50px black;
}
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: auto;
}

.caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #b67352;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #b67352;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 20px;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #b67352;
  border-radius: 7px 7px 0 0;
  padding: 15px;
}
.first-footer {
  display: flex;
  gap: 10px;
  justify-content: space-evenly;
}
.second-footer a {
  color: #333;
  text-decoration: none;
}
.second-footer > p a {
  text-decoration: none;
  color: #000000;
}
.second-footer > p a:active {
  text-decoration: none;
  color: #000000;
}
.second-footer > p a:visited {
  text-decoration: none;
  color: #000000;
}
/* Responsive Footer */
@media (max-width: 340px) {
  .dropdown-content ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    line-height: 1.5;
  }
}
