
.scroll-for-more {
    font-size: 1.2em;
    position: absolute;
    top: calc(100svh - 50px);
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
}

.scroll-for-more .scroll-text-container {
    overflow: hidden;
    position: relative;
    height: 25px;
    width: 200px;
}

.scroll-for-more p {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
    text-transform: uppercase;
    color: white;
}

.scroll-for-more svg
{
  width: 15px;
  fill: white;
}