@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");
@font-face {
    font-family: "Bruce Forever";
    src: url("../src/font/Bruce\ Forever.ttf");
}

@font-face {
    font-family: 'BraveNewEraG98';
    src: url('../src/font/BraveNewEraG98-5XOj.ttf') format('truetype');
}

@font-face {
    font-family: 'ethnocentric';
    src: url("../src/font/ethnocentric\ rg.otf");
}

a {
    text-decoration: none;
}

* {
    margin: 0;
}

body {
    color: #ffffff;
    margin: 0;
    padding: 0;
    font-family: "Ethnocentric", sans-serif;
    background-color: #000000;
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

.blog {
    margin: 0 300px 0 300px;
}

@media screen and (max-width: 1000px) {
    .blog {
        margin: 0 50px 0 50px;
    }
}

.content {
    padding-top: 100px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.content .title {
    font-size: 30px;
}

@media screen and (max-width: 768px) {
    .content .title {
        font-size: 17px;
        line-height: 22px;
    }
}

.content>img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    margin-top: 20px;
}

.content>p {
    font-family: BraveNewEraG98;
    font-size: 20px;
    letter-spacing: 1px;
    text-indent: 50px;
    margin-top: 40px;
}

@media screen and (max-width: 768px) {
    .content>p {
        font-size: 15px;
        text-indent: 20px;
    }
}

section {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    gap: 20px;
}

@media screen and (max-width: 840px) {
    section {
        flex-wrap: wrap;
    }
}

.title-another {
    font-size: 30px;
    margin-top: 48px;
    margin-bottom: 27px;
}

@media screen and (max-width: 840px) {
    .title-another {
        font-size: 20px;
    }
}

.card {
    height: 200px;
    width: 500px;
    display: flex;
}

@media screen and (max-width: 840px) {
    .card {
        height: 100px;
        width: auto;
        padding-top: 10px;
    }
}

.card .img-card {
    height: 100%;
    width: auto;
}

.card>div>h4 {
    padding-left: 10px;
    margin-top: 0px;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #ffffff;
}

@media screen and (max-width: 840px) {
    .card>div>h4 {
        font-size: 15px;
        -webkit-line-clamp: 1;
    }
}

.card>div>p {
    padding-left: 10px;
    margin-top: 10px;
    text-indent: 50px;
    font-size: 20px;
    font-style: normal;
    font-family: BraveNewEraG98;
    font-weight: 400;
    line-height: normal;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #ffffff;
}

@media screen and (max-width: 840px) {
    .card>div>p {
        font-size: 12px;
        -webkit-line-clamp: 4;
        text-indent: 20px;
    }
}

.hidden-left {
    opacity: 0;
    filter: blur(3px);
    transform: translateX(-10%);
    transition: all 1s ease-in-out;
    transition-delay: 0.1s;
}

.show-left {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.hidden-right {
    opacity: 0;
    filter: blur(3px);
    transform: translateX(5%);
    transition: all 1s ease-in-out;
    transition-delay: 0.1s;
}

.show-right {
    z-index: -10;
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}