@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
  background-color: rgb(193, 207, 207);
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 624;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.navbar {
  background-color: navy;
  color: aqua;
  height: 80px;
  width: auto;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.logo {
  color: lightgreen;
  font-size: larger;
  font-weight: bolder;
  text-shadow: 6px 6px 15px #fff;
  text-decoration: underline;
}
.navbar .container ul {
  display: flex;
  list-style-type: none;
}
.navbar .container ul li {
  display: inline-block;
  margin-left: 20px;
  a {
    color: aqua;
  }
}
a:link {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a:active {
  text-decoration: underline;
}
#home {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Full viewport height */
}

.hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  max-width: 1200px;
  position: relative;
}
.intro {
}
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 300px;
  /* Circular shape */
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  text-align: center;
  color: white;
  z-index: 1;
}

.hero-text h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-text h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.hero-text .btn {
  background-color: #00bcd4;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.hero-text .btn:hover {
  background-color: #008c9e;
}
.about-me {
  background-color: rgb(162, 162, 207);
  color: white;
  justify-items: center;
  margin-top: 30px;
}
h2 {
  color: #fff;
}
.about-me-pic {
  height: 110px;
  width: auto;
  border-radius: 50%;
  border-style: groove;
}
.download-button {
  margin-top: 20px;
  background-color: rgb(1, 1, 14);
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.download-button:hover {
  background-color: aqua;
}
.download-link {
  color: whitesmoke;
}
.download-link:hover {
  background-color: green;
}
.about-me-content {
  justify-items: center;
}
.boxes .container {
  display: flex;
  justify-content: space-between;
}
.skills {
  justify-items: center;
  margin-top: 60px;
}

.box {
  flex: 1;
  background-color: #0a51cc;
  color: #fff;
  margin: 30px 20px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
  padding: 80px 60px;
  justify-content: center;
}

.box i {
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .header .container {
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    justify-content: center;
  }

  .header .container div {
    text-align: center;
  }

  .boxes .container {
    display: block;
  }
}
.my-skills {
  align-items: center;
}
/* Background color for the my-project container */
.my-project {
  background-color: rgb(140, 140, 149);
  padding: 20px;
}

/* Style for the flex container */
.project-flex {
  display: flex;
  justify-content: space-between; /* Space out the items evenly */
  gap: 20px; /* Space between the project items */
  margin-top: 20px;
}

/* Style for each project item container */
.project-flex2 {
    display: flex;
  flex-direction: column; /* Stack image and text vertically */
  width: 30%; /* Ensure each project takes 30% of the width */
  border-radius: 10px;
  background-color: white;
  padding: 10px;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1); /* Add some shadow for better appearance */
}

/* Image styling */
.project-image {
  width: 100%;
  height: 150px;
  object-fit: cover; /* Make sure the image fills the area without distorting */
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Styling for text and links */
.project-flex2 p {
  font-size: 14px;
  color: #555;
}

.project-flex2 a {
  font-size: 16px;
  color: #00bcd4;
  text-decoration: none;
}

.project-flex2 a:hover {
  text-decoration: underline;
}
.my-project-heading {
  text-align: center;
  color: antiquewhite;
}
.project-title {
  text-align: center;
}
/* styling for project title */
#contact-me {
  justify-items: center;
}
#contact-me h2 {
  color: #00bcd4;
}

.form {
  margin: 10px;
  padding: 20px;
}
.type-your-text {
  height: 120px;
  width: 250px;
  padding: 20px;
  align-items: start;
}
.button {
  margin-left: 50px;
  padding: 5px 15px;
  background-color: whitesmoke;
  color: #00bcd4;
}
.button :hover {
  box-shadow: 3px 4px 5px black;
  transition: all 0.4s ease;
}
.input-type {
  margin-left: 30px;
  width: 50px;
}
.footer {
  text-align: center;
}
