/* Layout */

main {
    display: flex; 
    flex-direction: column; 
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-top: -2rem;
}

#bild-kran {
  width: 100%;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUpImage 1.2s ease forwards, shrinkAndFade 15s ease forwards;
  animation-delay: 6s;
}

h2 {
    font-size: 1.4rem; 
}

h1 {
    font-size: 1.3rem; 
}

p {
    font-size: 3rem;
    font-weight: 900;
    align-self: center;  
}

