.hero {
    display: flex;
    justify-content: center;
    align-items: center;

    height: calc(100vh - 60px);
}

.hero img {
    max-width: 70%;
    max-height: 70%;

    width: auto;
    height: auto;

    animation: fadeIn 2s ease;
}

.hero-small {
    display: flex;
    justify-content: center;
    align-items: center;

    height: calc(30vh - 60px);

    padding-top: 15vh;
}

.hero-small img {
    max-width: 100%;
    max-height: 100%;

    width: auto;
    height: auto;

    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}