body {
    color: rgb(32, 32, 32);
    overflow-x: hidden;
    overflow-y: hidden;
    letter-spacing: 3px;
}
.scroll-item {
    width: 100%;
    height: 800px;
    position: relative;
    flex: 100%;
}
.item-background {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}
.item-text {
    position: absolute;
    bottom: 120px;
    left: 10px;
    right: 10px;
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    letter-spacing: 4px;
}
.item-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: fit-content;
    text-align: center;
    font-size: 12px;
    padding: 20px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 5px;
    cursor: pointer;
    color: rgba(255, 255, 255, 1);
    letter-spacing: 4px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}
@media only screen and (min-width: 768px) {
    .item-background {
        background-size: cover;
    }
    .item-button {
        font-size: 16px;
        letter-spacing: 6px;
    }
    .item-text {
        font-size: 36px;
        letter-spacing: 6px;
    }
}

.item-button:hover {
    background-color: rgba(255, 255, 255, 0.214);
}
