* {
    letter-spacing: 3px;

}

.title_download {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 15px 0px;
} 

.title_download h2 {
    font-size: 17px;
    font-family: Minecraft-Five-Bold, sans-serif;
    color: #f8f8f8;
}

.title_download p {
    font-size: 13px;
    font-family: Minecraft-Seven, sans-serif;
    color: #9b9b9b;
}

.post_download {
    display: flex;
    border: solid 4px #242424;
    padding: 20px;
    border-radius: 4px;
    gap: 20px;
}

.post_download img {
    width: 40%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    aspect-ratio: 19 / 9;
}

.post_download_info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.post_download_info h2 {
    font-size: 17px;
    font-family: Minecraft-Five-Bold, sans-serif;
    color: #f8f8f8;
}

.post_download_info p {
    font-size: 13px;
    padding-top: 5px;
    color: #dadada;
    font-family: Minecraft-Seven, sans-serif;
}

.post_download_info button {
    color: #171717;
    background-color: #29ce00;
    border: inset 4px #2fec00;
    transition: all 0.2s;
    font-weight: 400;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    height: 40px;
    font-size: 15px;
    font-family: Minecraft-Five-Bold, sans-serif;
}

.post_download_info button:hover {
    background-color: #23b100;
    border: inset 4px #28c900;
}


.post_download_button_p {
    border: solid 4px #242424;
    height: 32px;
    font-size: 13px;
    border-radius: 4px;
    color: #dadada;
    display: flex;
    justify-content: center;
    font-family: Minecraft-Seven, sans-serif;
    align-items: center;
    margin-top: 20px;
}

.post_download_button_p span {
    padding-left: 5px;
    padding-right: 5px;
}

.navigation_pc_true {
    border-bottom: none;
}

.navigation_pc_false:hover {
    border-bottom: none;
}


@media only screen and (max-width: 1000px) {
    .post_download {
        flex-direction: column;
    }

    .post_download img {
        width: auto;
    }

}