@import url('https://fonts.googleapis.com/css2?family=Mitr:wght@200;400;600&display=swap');

body {
  font-family: 'Mitr', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.header {
  width: 100%;
  background-color: #f8f9fa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding-top: 10px;
  padding-bottom: 10px;
}

.header-title {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  padding-left: 30px;
}

.header-links {
  display: flex;
  gap: 15px;
  padding-top: 30px;
  padding-right: 30px;
}

.header-link {
  padding: 0.5rem 1rem;
  border: 1px solid black;
  border-radius: 9999px;
  border-color: #a7f3d0;
  background-color: #a7f3d0;
  transition: all 0.2s ease-in-out;
}

.header-link:hover {
  border-width: 4px;
  background-color: #6ee7b7;
  border-color: #6ee7b7;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.image-container {
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  width: 100%;
}

.profile-image {
  width: 400px;
  max-width: 70%;
  border-radius: 20%;
}

.icon-row {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
.logo {
  height: 48px;
  border-radius: 25%;
  margin-left: 4px;
  margin-right: 4px;
  padding: 4px;
}

.links-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 80%;
  max-width: 700px;
  padding: 20px;
}

.button {
  width:70%;
  text-align: center;
  background-color: black;
  color: white;
  padding: 10px;
  margin: 10px;
  text-decoration: none;
  font-size: large;
  transition: background-color 0.3s;
}

.button:hover {
  background-color: blue;
}

.footer {
  background-color: whitesmoke;
  text-align: center;
  padding: 20px;
  width: 100%;
  position: relative;
}

.footer-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}

.project-section{
  max-width: 1000px;
  width: 90%;
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: flex;
  overflow: hidden;
  margin: 20px;
  padding: 10px;
}

.project-section img{
  width: 40%;
  height: 30%;
  object-fit: cover;
}

.project-section p{
  font-size: 16px;
}

.project-tag {
  padding: 5px;
  margin-right: 5px;
  background-color: #d2d2d2;
  color: black;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  white-space: nowrap;
}

#tag-section{
  display: flex;
  flex-wrap: wrap;
  margin: 10px;
  border-radius: 10px;
}

.project-text{
  margin: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
}