/* dashboard-css */
.btn {
    font-size: 2.5rem;
    overflow: hidden;
    padding: 50px;
    border: 1px solid gray;
    margin-top: 250px;
    background-color: rgba(255, 255, 255, 0.200);

    span {
        transform: translateY(250%);
        transition: 1s ease;
        display: inline-block;

        &.is-active {
        transform: translateY(0%);
        }
    }
}

.btn:hover {
    background-color: rgba(155, 155, 155, 0.200);
}

.btn-2 {
    font-size: 2.5rem;
    overflow: hidden;
    padding: 30px;
    border: 1px solid gray;
    margin-top: 250px;
    background-color: rgba(255, 255, 255, 0.200);

    span {
        transform: translateY(110%);
        transition: 1s ease;
        display: inline-block;

        &.is-active {
        transform: translateY(0%);
        }
    }
}

.btn-2:hover {
    background-color: rgba(155, 155, 155, 0.200);
}

.btn-3 {
    font-size: 2.5rem;
    overflow: hidden;
    padding: 30px;
    border: 1px solid gray;
    margin-top: 250px;
    margin-left: 30px;
    background-color: rgba(255, 255, 255, 0.200);

    span {
        transform: translateY(110%);
        transition: 1s ease;
        display: inline-block;

        &.is-active {
        transform: translateY(0%);
        }
    }
}

.btn-3:hover {
    background-color: rgba(155, 155, 155, 0.200);
}

.title {
    max-height: 300px;
}

body.backimage {
    background-image: url(../img/bgimage.png);
    background-size: cover;
    background-position: center;
}

.a-1 {
    color: oldlace;
    display: flex;
    justify-content: center;
}

.title-2 {
    color: oldlace;
    display: flex;
    justify-content: center;
}

.btn-02 {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 5px;
    font-size: 1em;
    border: 1px solid gray;
    background-color: whitesmoke;
    color: rgb(36, 22, 5);
    font-weight: bold;

    span {
        display: inline-block;
        transition: 1s ease;
    }
    .before span {
        transform: translateY(50%);
    }

    .after span {
        transform: translateY(110%);
        color: burlywood;

    }

    .before span.is-active {
        transform: translateY(-150%);
    }
    .after span.is-active {
        transform: translateY(-50%);
    }

}
