.collection_1 {
    width: 100%;
    height: calc(100vh - 200px);
}

@media screen and (max-width: 1000px) { 
    .collection_1 {
        height: calc(100vh - 210px);
    }
}

.collection_1_inner {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-position: center;
    background-size: cover;
}

.collection_1_title {
    min-width: min-content;
    width: fit-content;
    max-width: 1000px;
    
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 0px;
    padding-bottom: 10px;
    background: linear-gradient(
        to right,
        rgb(255, 255, 255) 0%,    /* full opacity start */
        rgb(255, 255, 255) 50%,   /* still full opacity at halfway */
        rgba(0, 123, 255, 0) 100%   /* fully transparent at end */
    );
    font-size: 60px;
    margin-left: 100px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.collection_1_title_big {
    font-size: 100px;
}

.collection_1_count {
    width: fit-content;
    max-width: 80%;
    font-size: 30px;
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 2px;
    padding-bottom: 8px;
    
    background-color: white;
    margin-left: 100px;
}

@media screen and (max-width: 1000px) { 
    .collection_1_title {
        font-size: 55px;
        margin-left: 50px;
        max-width: calc(100vw - 200px);
    }
    .collection_1_count {
        font-size: 18px;
        margin-left: 50px;
    }
}

@media screen and (max-width: 650px) { 
    .collection_1_title {
        font-size: 32px;
        margin-left: 26px;
        max-width: calc(100vw - 120px);
    }
    .collection_1_count {
        font-size: 16px;
        margin-left: 26px;
    }
}

.content {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}

.content_column {
    max-width: calc(25% - 14px);
}

@media screen and (max-width: 1050px) { 
    .content_column {
        max-width: calc(50% - 5px);
    }
}

.content_img {
    max-width: 100%;
    margin-bottom: 18px;
    transition: transform 0.5s ease;
}

@media screen and (max-width: 1050px) { 
    .content_img {
        margin-bottom: 6px;
    }
}

.content_img:hover {
    transform: scale(1.03);
    cursor: pointer;
}
