.start-content {
    position: relative;
}

.bottom-content {
    position: absolute;
    bottom: 10vh;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.content-image {
    width: 80px;
    height: auto;
    display: block;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.5));
}

.content-title {
    color: white;
    margin-top: 20px;
    font-size: 22px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

@media (max-width: 768px) {
        .bottom-image {
            width: 200px;
        }

        .content-title {
            font-size: 18px;
            margin-top: 15px;
        }

        .bottom-content {
            bottom: 8vh;
            width: 95%;
        }
    }

@media (max-width: 480px) {
    .bottom-image {
        width: 170px;
    }

    .content-title {
        font-size: 16px;
        margin-top: 12px;
        line-height: 1.3;
    }

    .bottom-content {
        bottom: 5vh;
        width: 98%;
    }

    .start-content {
        min-height: 88vh;
    }
}
