
/* Apply Inter font to all elements */
body {
  font-family: 'Inter', sans-serif;
  background-color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Apply Inter font to specific elements */
h1 {
  font-family: 'Inter', sans-serif;
  font-size: xx-large;
  color: #424242;
}

h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 100;
  font-size:large;
  color: #8f8f8f;
}

h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 100;
  font-size:medium;
  color: #565656;
}

h4 {
  font-family: 'Inter', sans-serif;
  font-weight:bold;
  font-size:large;
  color: #868686;
  margin-top: 0;
}

b{
  color: #565656;
}

.Hero{
  margin: 0 auto; 
  margin-top: 20vh;
  max-width: calc(100vw - 80px);
  width: 800px;
}

.Projects_container{
  margin: 0 auto; 
  max-width: calc(100vw - 80px);
  margin-top: 100px;
  width: 800px;

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.Project_explanations{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease; /* Add transition effect */
}

.Project_explanations:active {
  opacity: 100%; /* Set opacity to 0% on hover */
}

.Project_explanations:hover {
  opacity: 100%; /* Set opacity to 0% on hover */
}

.Project_card{
  width:380px;
  max-width: calc(100vw - 80px);
  height: 250px;
  margin-top: 40px;
  position: relative;
}

.Project_card p{
  margin: 0 50px;
  color: #8d8d8d;
  text-align: center;
}

.Project_card img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.Projects_container a{
  text-decoration: none;
}

.social_media_icons_container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-top: 25px;
}

.social_media_icons_container h3{
  margin-right: 12px;
}

.social_media_icons_container img{
  width: 22px;
  height: auto;
  opacity: 50%;
  margin-right: 15px;
  transition: opacity 0.3s ease; /* Add transition effect */
}

img:hover {
  opacity: 80; /* Set opacity to 0% on hover */
}

footer{
  margin-top: 200px;
  margin-bottom: 25px;

}

footer p{
  font-size:smaller;
  color: #b1b1b1;
}
