#app {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}

.hero {
    height: 300px;
}

.hero h2 {
    color: navy;

    :hover {
        color:blueviolet;
    }
}

.hero h3 {
    color: white;
    pointer-events: none;
    user-select: none;
    font-size: smaller;
}