@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  color: #2b2b2b;
  background-color: #eef0ed;
  margin: 0;
  padding: 0;
}

header {
  background-color: #ffffff;
  padding: 10px 0;
}

#logo {
  display: block;
  max-width: 200px;
  margin: 0 auto;
}

.profile-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0;
}

.profile {
  text-align: justify;
  text-justify: auto;
  margin: 20px;
  flex-basis: 100%;
  max-width: 470px;
}

.profile-pic {
  border-radius: 50%;
  width: 300px;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
  margin: auto;
}

.profile-pic:hover {
  transform: scale(1.05);
}

.profile-name {
  font-size: 30px;
  font-weight: 600;
  color: #2b2b2b;
  margin-top: 10px;
  text-align: center;
}

.profile-role {
  font-size: 16px;
  text-align: left;
  font-weight: bold;
  color: #2b2b2b;
  margin-top: 5px;
  margin-bottom: 20px;
}

h1, h2, h3, h4, h5, h6 {
  color: #ffffff;
  font-weight: 600;
}

p, li {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

a {
  color: #007bff;
}

a:hover {
  color: #0056b3;
}

@media screen and (min-width: 768px) {
  .profile {
    flex-basis: calc(50% - 100px);
    margin: 20px 50px;
  }
}

.contact-info {
  text-align: left;
  margin-top: 20px;
}

.linkedin-link {
  display: block;
  color: #0077b5;
  margin-top: 10px;
  text-decoration: none;
}

.linkedin-logo {
  width: 20px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

#about-us {
  background-color: #eef0ed;
}

#projects {
  padding: 20px;
  margin-top: 20px;
  background-color: #18191d;
  color: white;
}

.project-link {
  background-color: #eef0ed;
  display: block;
  padding: 10px;
  max-width: 600px;
  margin: 20px auto;
  border-radius: 5px;
  text-decoration: none;
  color: #2b2b2b;
  
}

.project-link:hover {
  background-color: #dde1df;
}

#projects h1 {
  text-align: center;
  font-size: 36px; /* Adjust this value to your preferred size */

}

.contact-info a[href^="mailto:"] {
  color: #4054b2;
  text-decoration: none;
}

.contact-info a[href^="mailto:"]:hover {
  color: #4054b2;
}

footer {
  background-color: #18191d;
  color: #ffffff;
  text-align: center;
  padding: 10px 0;
  margin-top: auto;
  
}

footer a[href="mailto:info@etanaopetus.fi"] {
  color: #ffffff !important;
  text-decoration: none; /* Optional: Removes underline from the link */

}
