*{
  margin: 0;
  padding: 0;
}
.container {
  display: flex;
  justify-content: center; 
  align-items: center; 
  height: 100vh;
}

.text-center {
  text-align: center;
}

.image-container h1{
  max-width: 100%; 
  max-height: 100%; 
}
h2{
  font-size: 20px;
  color: green;
}
.contact-container {
  display: flex;
  justify-content: center; 
  align-items: center; 
}
.contact-link:hover{
  transform: translateY(-5px);
  transition: 1s;
}
.main{
  position: relative;
  bottom: 200px;
}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  h1 {
    font-size: 60px;
  }
}
