@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: white;
    color: white;
}

.hero {
    position: relative;
    width: 100%;
    height: 40vh;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    text-align: center;
}

nav {
    top: 20px;
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: white;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #ffcc00;
    transform: scale(1.1);
    /* Thêm hiệu ứng phóng to khi hover */
}

nav ul li:hover::before {
    content: '';
    /* Nếu muốn có một hiệu ứng nữa khi hover lên li */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffcc00;
    transform: scaleX(0);
    transform-origin: bottom right;
    animation: slideIn 0.3s forwards;
    /* Hiệu ứng thêm đường gạch dưới */
}

@keyframes slideIn {
    to {
        transform: scaleX(1);
        transform-origin: bottom left;
    }
}

.content-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: left;
    text-align: left;
    margin-left: 40px;
}

.content {
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.content.active {
    opacity: 1;
}

.tag {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6);

}

.spanhead {
    font-size: 20px;
    font-weight: 600;

    text-transform: uppercase;
    color: #b22222;
}

.hero h1 {
    font-size: 36px;
    font-weight: 600;
    margin-top: 10px;
}

.hero p {
    font-size: 18px;
    margin-top: 15px;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.date {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.date img {
    width: 20px;
    margin-right: 8px;
}

h1 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 10px;
}

p {
    line-height: 1.6;
}

.subheading {
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
}

.image-container {
    text-align: center;
    margin-top: 15px;
}

.image-container img {
    max-width: 100%;
    border-radius: 10px;
}
