#triangle-box {
    overflow: hidden;
    background-color: #333;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.heading {
    height: 100vh;
    text-align: center;
}

.content {
    position: relative;
    z-index: 4000;
    color: #F09909;
    top: 50%;
    transform: translate(0, -50%);
}

h1 {
    font-size: 4rem;
}

h1::after {
    content: "";
    width: 33%;
    height: 30px;
    background-color: #F09909;
}

.caption {
    text-align: center;
    z-index: 4000;
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 100%;
    padding: .5em;
    background-color: #333;
    color: #F09909;
}

.caption p {
    margin: 0;
    padding: 0;
}

.caret {
    cursor: pointer;
    transform: rotate(-45deg);
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 10px;
    border-bottom: 4px solid #F09909;
    border-left: 4px solid #F09909;
}