Popup {
    transition: all 2s ease-in-out;
    font-size: 16px;
    position: relative;
    font-weight: bold;
    width: 400px;
    padding: 8px;
    min-height: 70px;
    align-items: center;
    font-family: Poppins;
    justify-content: flex-start;

    .main {
        height: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        background-color: rgba(36, 36, 36, 0.605);
        border-radius: 10px;
        border: 4px rgb(61, 129, 63);
        text-shadow: 2px 2px 2px black;
        padding: 14px;
        box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.75);
    }

    &:intro {
        transform: translateY(200%);
    }

    &:outro {
        transform: translateY(300%);
    }
}