#homepage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#black-square {
    position: absolute;
    z-index: 1;
    background-color: black;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    transition: all 1s ease-in-out;
}
#text-cover {
    position: absolute;
    z-index: 1;
    background-color: white;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#text {
    position: absolute;
    font-size: 80px;
    color: black;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 1s ease-in-out;
    font-weight: 900;
}
#text .second {
    display: inline-block;
    width: 0;
    transition: all .4s ease-in-out;
    font-weight: 900;
    opacity: 0;
}
#text * {
    transition: all .6s ease-in-out;
}

#logo {
    position: absolute;
    font-size: 32px;
    color: black;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 1s ease-in-out;
}
#cta {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;

    text-align: center;
    font-size: 26px;
    padding: 40px;
    cursor: pointer;
}