* {
    font-family: sans-serif;
    font-weight: lighter;
    color: black;
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        transform: translateY(100px);
        opacity: 0!important;
    }
    to {
        opacity: 1;
    }
}

.pop-in {
    animation: popScale 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

@keyframes popScale {
    0% {
        transform: scale(1);
        opacity: 0;
    }
    50% {
        transform: scale(1.3); /* Lidt overdrevet vækst */
        opacity: 1;
    }
    100% {
        transform: scale(1); /* Tilbage til normal størrelse */
    }
}

.certification-feature-main {
    padding: 4rem 2rem;
    margin: 0 auto;
    text-align: center;

    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.certification-feature-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 800px;
}

.certification-feature-inner {
    min-height: 600px;
    transition: min-height 0.3s ease-in-out;
}

.certification-feature-text {
    box-shadow: rgba(100, 100, 111, 0.05) 0px 7px 29px 0px;
    background: white;
    border-radius: 5px;
    padding: 2.5rem 2rem;
    margin-top: 0;
    color: black;
    animation-delay: 0.05s;
}

.certification-feature-title {
    transform: translateY(10px);
    z-index: 10;
    padding: 1rem 1rem;
    margin-bottom: 0;
    background-color: #f0f;
    color: white;
    font-size: 24px;
    font-family: ITC Century Std,serif;
    text-transform: uppercase;
    text-align: center;
}

.certification-feature-logo {
    max-width: 240px;

}
.certification-feature-main button {
    border: none;
    background: #f0f;
    color: white;
    padding: 1rem 2rem;
    font-size: 17px;
    border-radius: 5px;
    transition: transform 0.3s ease;
    animation-duration: 1s;
    margin-top: 2rem;
}


.certification-feature-main button:hover {
    cursor: pointer;
    transform: scale(1.05);
}

@keyframes rainbow {
    0% {
      background-size: 200% 200%;
    }
    50% {
      background-size: 300% 300%;
    }
    100% {
      background-size: 200% 200%;
    }
  }