@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

body,
html {
  margin: 0;
  padding: 0;
  font-family: "Ubuntu", sans-serif;
  background-color: #f4f4f4;
  overflow-x: hidden
}

.container {
  display: flex;
  min-height: 100vh;
  overflow: hidden;
}

.aside {
  width: 19%;
  background-color: #141313;
  color: #fff;
  padding-top: 5%;
}

.navbar ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#home {
  color: orange;
}

#home:hover {
  color: white;
}

.navbar ul li {
  margin: 20px 0;
}

.navbar li:hover {
  transform: scale(1.3);
  transition: ease-in-out 0.2s;
}

.navbar li span {
  color: orange;
}

.navbar ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

#hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  position: relative;
  overflow-y: scroll;
}

.content {
  text-align: center;
  min-width: 100%;
}

#hello {
  font-size: 48px;
  margin: 0;
  color: #333;
}

#hello span {
  font-weight: bolder;
  color: #007bff;
}

.p h5 {
  font-size: 50px;
  margin: 25px 0;
  color: rgb(132, 91, 16);
}

/* image Circle */
/* Container to hold the image and the circular background */
.img {
  position: relative;
  display: inline-block;
  border-radius: 50%;
  padding: 10px; /* Optional padding inside the circle */
  background-color: rgb(232, 205, 116);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); /* Optional shadow for bold effect */
}

/* Style the image inside the circle */
.img img {
  display: block;
  border-radius: 50%; /* Make the image round */
  width: 400px; /* Adjust size as needed */
  height: 400px; /* Adjust size as needed */
  object-fit: cover; /* Ensure the image covers the circle area */
  opacity: 1;
}

/* Animation Styles */
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 2s ease-in-out;
}

.slide-down {
  animation: slideDown 1s ease-in-out;
}

/* Additional Styles */
h6 span {
  display: inline-block;
  animation: colorChange 2s infinite alternate;
}

@keyframes colorChange {
  0% {
    color: rgb(43, 43, 8);
  }
  50% {
    color: orange;
  }
  100% {
    color: rgb(225, 25, 25);
  }
}

/* Existing styles... */

.buttons {
  margin-top: 20px;
}

.btn {
  display: inline-block;
  padding: 15px 23px;
  margin: 10px;
  background-color: black;
  color: orange;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: white;
  color: black;
}

/* Media Quary */
@media (max-width: 768px) {
  .container{
    height: fit-content;
  }
  .aside {
    width: 100%;
    padding-top: 10px;
  }

  .navbar ul {
    flex-direction: column;
    justify-content: space-around;
    /* background-color: blue; */
    height: auto;
    margin-top: 115%;
  }

  .navbar ul li {
    margin-top: 10% 5px;
  }

  #hero {
    flex-direction: column;
    padding: 20px;
  }

  .content {
    min-width: 100%;
    text-align: center;
  }

  #hello {
    font-size: 32px;
  }

  .p h5 {
    font-size: 28px;
    margin: 15px 0;
  }

  .img img {
    width: 200px;
    height: 200px;
  }

  .btn {
    padding: 10px 15px;
    font-size: 16px;
  }
}
