* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

html,
body {
    font-weight: 300;
    line-height: 1.4;
    scroll-behavior: smooth;
    font-family: 'Times New Roman', Times, serif;
}

body {
    font-size: 1.4rem;
}

header {
    position: sticky;
    top: 0;
    background: white;

}

ul {
    list-style: none;
}

nav ul {
    display: flex;
    gap: 2rem;
    padding: 1rem;
}

nav {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    padding: 1rem;
    margin: 0 auto;
}

header img,
footer img {
    width: 20px;
    height: 20px;
}

main {
    max-width: 1200px;
    margin: 0 auto;
}

nav ul li {
    font-size: 1.8rem;
}

nav ul li:hover {
    border-bottom: #f6f478 3px solid;
}

nav i {
    font-size: 2.5rem;
}

#hero {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.hero_content h1 {
    font-size: 6rem;
    line-height: 1.2;
}

.hero_content h4 {
    font-size: 2.5rem;
    font-weight: 300;
}

.hero-img img {
    border-radius: 30px;
    width: 500px;
    height: 400px;
}

header,
main {
    margin-right: 50px;
    margin-left: 50px;
}

.h_card {
    display: flex;
    margin: 2rem 0;
    box-shadow: 0px 5px 4px rgba(255, 249, 249, 0.671);
    align-items: center;
    bottom: 1px solid rgb(247, 241, 241);
    border-radius: 0.5rem;
    overflow: hidden;
}

.SECOND img {
    width: 400px;
    height: 300px;
}

.containering img {
    width: 300px;
    height: 200px;
}

.card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.status {
    display: flex;
    justify-content: space-between;
}

.read-btn {
    all: unset;
    font-weight: 800;
    border-bottom: 1px solid transparent;
}

.read-btn:hover {
    border-bottom: 1.5px solid rgb(246, 255, 123);
}

.v_card {
    display: flex;
    flex-direction: column-reverse;
    max-width: 320px;
    box-shadow: 0px 5px 4px rgba(255, 249, 249, 0.671);
    align-items: center;
    bottom: 1px solid rgb(247, 241, 241);
    border-radius: 0.5rem;
    overflow: hidden;
}

.card-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card_wraper {
    display: flex;
    justify-content: center;
}

.long img {
    width: 300px;
    height: 400px;
}

footer ul {
    display: flex;
    gap: 2rem;
}

footer {
    display: flex;
    max-width: 1200px;
    padding: 1rem;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

.host h1 {
    font-size: 3rem;
}

.banner-img img {
    width: 900px;
    height: 500px;
}

.about {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.host hr {
    margin: 3rem 0;
}

article {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 2rem;
}

a {
    text-decoration: none;
    color: black;
}

@media(max-width: 1200px) {
    nav ul {
        gap: 1rem;
    }

    #hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .hero-content h4 {
        font-size: 2rem;
    }

    .hero-img img {
        width: 400px;
        height: 300px;
    }

    .h_card {
        flex-direction: column;
        margin: 1rem 0;
    }

    .SECOND img {
        width: 100%;
        height: auto;
    }

    .containering img {
        width: 100%;
        height: auto;
    }

    .card-content {
        padding: 1rem;
    }

    .v_card {
        max-width: 100%;
        flex-direction: column;
    }

    .long img {
        width: 100%;
        height: auto;
    }

    footer ul {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    footer {
        flex-direction: column;
        gap: 1rem;
    }

    .banner-img img {
        width: 100%;
        height: auto;
    }

    .host h1 {
        font-size: 2rem;
    }

    .about {
        flex-direction: column;
        text-align: center;
    }

    article {
        gap: 2rem;
    }

    nav ul li {
        font-size: 1.6rem;
    }
}

@media(max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    #hero {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content h4 {
        font-size: 1.8rem;
    }

    .hero-img img {
        width: 300px;
        height: 250px;
    }

    .h_card {
        flex-direction: column;
        margin: 1rem 0;
    }

    .SECOND img,
    .containering img,
    .long img {
        width: 100%;
        height: auto;
    }

    .card-content {
        padding: 1rem;
    }

    .v_card {
        max-width: 100%;
    }

    footer ul {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    footer {
        flex-direction: column;
        gap: 1rem;
    }

    .banner-img img {
        width: 100%;
        height: auto;
    }

    .host h1 {
        font-size: 1.5rem;
    }

    .about {
        flex-direction: column;
        text-align: center;
    }

    article {
        gap: 2rem;
    }

    nav ul li {
        font-size: 1.4rem;
    }
}

@media(max-width: 480px) {
    nav ul {
        gap: 1rem;
    }

    #hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h4 {
        font-size: 1.5rem;
    }

    .hero-img img {
        width: 250px;
        height: 200px;
    }

    .h_card {
        flex-direction: column;
        margin: 1rem 0;
    }

    .SECOND img,
    .containering img,
    .long img {
        width: 100%;
        height: auto;
    }

    .card-content {
        padding: 1rem;
    }

    .v_card {
        max-width: 100%;
    }

    footer ul {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    footer {
        flex-direction: column;
        gap: 1rem;
    }

    .banner-img img {
        width: 100%;
        height: auto;
    }

    .host h1 {
        font-size: 1.2rem;
    }

    .about {
        flex-direction: column;
        text-align: center;
    }

    article {
        gap: 2rem;
    }

    nav ul li {
        font-size: 1.3rem;
    }
}
