
.background-image {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh; /* Make it fit the screen height */
  background-image: url('background.png');
  background-size: cover; /* Ensures the image covers the entire area */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents the image from repeating */
}

.project-thumbnail{
  width: 95%; /* Image fills the width of the container */
  height: 95%; /* Image fills the height of the container */
  object-fit: contain; /* Ensures the image respects the aspect ratio */
  display: block; /* Removes extra space caused by inline images */
  margin: auto;
}

.project-image{
  display: block;
  width:60%;
  margin-left:40%;
}

.contact-icon{
  width: 75px;
}