
main{
  background-color: #f5f5f5;
  min-height: 500px;
  margin: 0px;
  padding: 0px;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeSlideUp 0.8s ease-in;
}

h1{
  font-family: 'Raleway', sans-serif;
  color: #50959b;
}
p{
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  color: #50959b;
  font-size: 24px;
}
h3{
  font-family: 'Raleway', sans-serif;
  color: #50959b;
  justify-self: center;
    font-size: 30px;
}
footer{
  animation: fadeSlideUp 0.8s ease-in;  
}
ul li{
  font-family: 'Raleway', sans-serif;
  color: #50959b;
}
.intro-block{
  background-color: rgb(223, 223, 223);
  min-width: 100%;
  display: flex;
  justify-content: center;
}
.intro-block img{
  width: 30%;
  height: fit-content;
  align-self: center;
}
.intro-text{
  max-width: 60%;
  margin: 0px 15px 0px 15px;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1200px){
  .intro-block{
    flex-direction: column;
  }
}