* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    width: 100%;
    height: 100%;
}
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", Arial, sans-serif;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Canh giữa các thành phần trong header */
    background-color: #6f2f9f;
    padding: 15px 30px;
    color: black;
    position: sticky; /* Hoặc dùng position: fixed */
    top: 0; /* Gắn header ở đầu trang */
    z-index: 1000; /* Giúp header luôn nằm trên các phần tử khác */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Thêm hiệu ứng bóng */
}

.logo img {
    height: 40px;
}

.main-content {
    display: flex;
    align-items: center;
    text-align: center;
}

.main-content .left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-content .left img {
    display: block;
    margin: 0 auto 10px; /* Adjusted to reduce spacing below the image */
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center; /* Align items in the same row */
}
.nav-links a {
    color: white;
    text-decoration: none !important; /* Remove underline */
    font-size: 17px; /* Updated font size */
    padding: 10px 0; /* Add padding to match button height */
}
.nav-links a:hover {
    text-decoration: underline;
}
.login-button {
    background-color: #6f2f9f;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 17px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}
.login-button:hover {
    transform: scale(1.05);
}

.main-content {
    background-color: #eae8ed; /* Set body background color */
    display: flex;
    height: calc(80vh - 70px); /* Adjust height based on header */
    margin-bottom: 15px;
}
.main-content .left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-content .left img {
    max-width: 90%; /* Increased size */
    height: auto;
}
.main-content .right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 40px;
    padding: 20px;

}
.main-content .right h1 {
    font-family: "Mulish", sans-serif;
    font-weight: 900;
    font-style: normal;
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #333; /* Set text color to black */
}
.main-content .right h1 span {
    display: block;
    font-size: 45px;
}

.main-content .right .search-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
}
.main-content .right .search-container input[type="text"], select{
    width: 50%;
    padding: 10px 15px; /* Adjust padding */
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 25px; /* Rounded corners */
    transition: border-color 0.3s ease;
}
.main-content .right .search-container input[type="text"]:focus, select:focus{
    outline: none;
    border-color: #6f2f9f; /* Change border color on focus */
}
.main-content .right .search-container button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #6f2f9f;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.2em;
}
section {
    background-color: white;
}

.cards {
    display: flex;
    justify-content: center; /* Center các card */
    gap: 15px; /* Giảm khoảng cách giữa các card */
    margin-top: 20px;
}
.card {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 200px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 1.2em;
    font-weight: bold;
    color: #764daa;
    transition: transform 0.3s ease;
    margin: 0 5px; /* Khoảng cách hai bên mỗi card */
}

.card:hover {
    transform: scale(1.05);
}
.carousel-card {
    transition: transform 0.3s ease;
    /* Hiệu ứng chuyển động */
    cursor: pointer;
    /* Con trỏ chuột */
    position: relative;
    /* Định vị cho các phần tử con */
}

.carousel-card.expanded {
    transform: scale(1.1);
    /* Phóng to lên 40% */
    z-index: 10;
    /* Đưa card lên trên cùng */
}

.article-details {
    position: absolute;
    /* Định vị tuyệt đối để hiển thị bên trong card */
    bottom: 10px;
    /* Cách đáy */
    left: 10px;
    /* Cách bên trái */
    color: #333;
    /* Màu chữ */
    background: rgba(255, 255, 255, 0.8);
    /* Nền mờ */
    padding: 10px;
    border-radius: 5px;
    transition: opacity 0.3s ease;
    /* Hiệu ứng mờ */
}

.avatar-container {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.menu {
    width: 160px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    margin: 0;
    position: absolute;
    top: 80px;
    right: 20px;
    display: none;
    z-index: 100;
}

.menu-section-1 {
    padding: 15px 20px;
    border-bottom: 1px solid #eaeaea;
}

.menu-section-2 {
    padding: 15px 20px;
    border-bottom: 1px solid #eaeaea;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    cursor: pointer;
    transition: all 0.2s;
}

.menu-item>a:hover {
    color: #ff6f00;
}

.menu-item a {
    color: #333;
    font-size: 14px;
    margin-right: auto;
    margin-left: 10px;
}

.logout-button {
    display: flex;
    justify-content: center;
    cursor: pointer;
    color: #333;
    font-size: 14px !important;
    font-weight: normal;
}

.menu-section-2>a {
    color: #333;
}

.menu-section-2>a:hover {
    color: #ff6f00;
}



.text-muted {
    color: #888;
    padding: 10px;
    font-size: 14px;
}

#copyLinkButton {
    background-color: #007bff;
    /* Màu nền xanh dương */
    color: white;
    /* Màu chữ trắng */
    border: none;
    /* Bỏ đường viền */
    padding: 10px 20px;
    /* Khoảng cách bên trong nút */
    font-size: 16px;
    /* Kích thước chữ */
    border-radius: 5px;
    /* Bo góc */
    cursor: pointer;
    /* Con trỏ chuột khi hover */
    transition: background-color 0.3s ease, transform 0.2s ease;
    /* Hiệu ứng hover */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Hiệu ứng đổ bóng */
    margin-top: 10px;
}

#copyLinkButton:hover {
    background-color: #0056b3;
    /* Màu xanh đậm hơn khi hover */
    transform: translateY(-2px);
    /* Hiệu ứng đẩy nút lên */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    /* Đổ bóng mạnh hơn khi hover */
}

#copyLinkButton:active {
    transform: translateY(0);
    /* Trả về vị trí ban đầu khi click */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Giảm đổ bóng khi click */
    background-color: #004085;
    /* Màu xanh tối hơn khi click */
}
.faq-title {
    text-align: center;
    color: #6f2f9f;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px; /* Khoảng cách dưới tiêu đề */
    margin-top: 30px;
}

.faq-container {
    display: flex; /* Sử dụng flexbox để chia thành hai cột */
    justify-content: space-between; /* Giãn đều giữa hai cột */
    gap: 20px; /* Khoảng cách giữa các cột */
    padding: 20px;
    margin: 20px 40px 0px 40px ;
    border-radius: 10px;
    background-color: #fff;
}

.faq-list {
    flex: 2; /* Cột danh sách chiếm 1 phần */
    list-style-type: none; /* Xóa dấu đầu dòng */
    padding: 0;
}

.faq-list li {
    margin-bottom: 15px;
    font-size: 1em;
}

.faq-list a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-list a:hover {
    color: #764daa;
}

.faq-form-container {
    flex: 1; /* Cột form chiếm 1 phần */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Canh trái */
    padding: 20px;
}


#ask-question-button {
    background-color: #6f2f9f;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, background-color 0.3s ease;
}

#ask-question-button:hover {
    background-color: #5b3e8c;
    transform: scale(1.05);
}

#question-form {
    display: none;
    width: 100%;
    margin-top: 20px;
}

#question-form input,
#question-form textarea {
    width: 100%;
    padding: 10px;
    border: 3px solid #c9d1d9;
    border-radius: 3px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    margin: 5px;
}


#question-form input:focus,
#question-form textarea:focus
{
    border-color: #FF9700;
    box-shadow: 0 0 6px rgba(255, 151, 0, 0.4);
    outline: none;
}


#question-form button {
    background-color: #6f2f9f;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, background-color 0.3s ease;
}

#question-form button:hover {
    background-color: #5b3e8c;
    transform: scale(1.05);
}

/* Nút Gửi Câu Hỏi */
#submit-question-button {
    background-color: #6f2f9f; /* Màu nền tím */
    color: white; /* Màu chữ trắng */
    border: none; /* Xóa viền */
    padding: 10px 20px; /* Khoảng cách nội dung */
    border-radius: 5px; /* Bo góc */
    cursor: pointer; /* Con trỏ chuột */
    font-size: 16px; /* Kích thước chữ */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Hiệu ứng đổ bóng */
    transition: transform 0.2s ease, background-color 0.3s ease; /* Hiệu ứng chuyển động */
    display: block; /* Đặt nút xuống hàng */
    margin-top: 10px; /* Tạo khoảng cách trên */
}

#submit-question-button:hover {
    background-color: #5b3e8c; /* Màu tím đậm hơn khi hover */
    transform: scale(1.05); /* Phóng to nhẹ khi hover */
}

#error-message {
    color: red;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

#form-success {
    color: green;
    font-size: 14px;
    margin-top: 10px;
    display: none;
}



/* Card hướng dẫn */
.instructions {
    text-align: center;
    color: #6f2f9f;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
}
.carousel-container {
    position: relative;
    width: 80%;
    margin: 30px auto;
    overflow: hidden;
}
.carousel {
    display: flex;
    transition: transform 0.3s ease-in-out;
}
.carousel-card {
    min-width: 300px;
    height: 300px;
    margin: 15px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 15px;
}

.carousel-card img {
    width: 100%;
    height: 60%; /* Reserve 60% of the card height for the image */
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.carousel-card .content {
    padding: 10px;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    color: #6f2f9f;
}
.carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.carousel-button {
    background-color: #6f2f9f;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    font-size: 2.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    margin: 0 10px;
}
.carousel-button:hover {
    background-color: #5b3e8c;
}
.toggle-button {
    display: block; /* Đảm bảo nút xuống hàng */
    text-align: center; /* Căn giữa nội dung nút */
    background-color: #6a1b9a;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    margin-left: 60px;
    margin-top: -30px;
}

.toggle-button:hover {
    background-color: #8e44ad;
}



footer {
    background-color: #f9f9f9;
    padding: 20px; /* Khoảng cách bên trong */
    margin: 20px 40px; /* Cách mép trái và phải 40px */

}

/* Nút floating */
.floating-button {
    position: fixed;
    margin-bottom: 50px;
    bottom: 50px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    z-index: 1000;
    cursor: pointer;
}

/* Nút nổi */
.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 70%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
    background-image: url("/guest/img/maybay.png");
    background-size: cover;
    background-color: #6f2f9f;
}

/* Form styling */
/* Overlay */
.modal-overlay {
    display: none; /* Mặc định ẩn */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Làm tối màn hình */
    z-index: 1000; /* Dưới modal */
}

/* Modal */

 .modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5); /* Overlay màu mờ */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    width: 100%;
    height: 100%;
     overflow: auto;
    align-content: center;
    text-align: center;
}

.modal-registration {
    display: none; /* Mặc định ẩn */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1001; /* Phải nằm trên overlay */
    align-content: center;
    text-align: center;
    width: 30%;
    height: 30%;
}

.modal-content {
    margin: auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    width: fit-content; /* Độ rộng tự điều chỉnh theo nội dung */
    max-width: 80%; /* Giới hạn độ rộng tối đa */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease; /* Hiệu ứng mờ dần */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.modal a, .modal-registration a{
    text-decoration: none;
    text-align: center;
    display: block;
    margin-top: 10px;
}
.modal h2, .modal-registration h2{
    font-weight: 700;
    margin-top: 0;
    font-size: 24px;
    color: #6f2f9f;
    text-align: center;
}
.modal input, .modal-registration input{
    width: 100%;
}
.modal button, .modal-registration button{
    width: 30%;
    padding: 10px;
    margin: 10px auto;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    align-content: center;
    font-family: "Mulish", sans-serif;
    font-weight: 700;
    background-color: #FF9700;

    height: 80%;
    color: white;

    cursor: pointer;
    text-align: center;
}
.modal button:hover, .modal-registration button:hover{
    background-color: #E97D02;

}
/* Overlay cho modal */
.modal h3, .modal p {
    color: #333;
    margin: 10px 0;
    text-align: center; /* Căn giữa các nội dung văn bản */
}
.closefaq {
    top: 10px;
    right: 20px;
    font-size: 25px;
    color: #aaa;
    cursor: pointer;
}

.closefaq:hover {
    color: #000;
}


/* Form popup */
.huongdan-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: fit-content; /* Tự động điều chỉnh theo nội dung */
    max-width: 90%; /* Đảm bảo không vượt quá 90% màn hình */
    max-height: 90%; /* Giới hạn chiều cao */
    overflow-y: auto; /* Cuộn nếu nội dung quá dài */
    z-index: 1000; /* Modal nằm trên overlay */
}

.huongdan-modal-overlay {
    display: none; /* Mặc định ẩn */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay màu mờ */
    z-index: 999; /* Đảm bảo overlay che toàn bộ màn hình */
}
#huongdanModalImage {
    width: 382px;
    height: 230px;
    margin: auto 160px;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.close {
    position: absolute;
    top: -7px;
    right: 7px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa; /* Màu sắc */
}
.close:hover,
.close:focus {
    color: black; /* Màu khi hover */
    text-decoration: none;
    cursor: pointer;
}


.huongdan-modal h3 {
    color: #333;
    margin: 10px 0;
    text-align: center; /* Căn giữa các nội dung văn bản */
}

.article-title{
    font-size: 18px;
    font-weight: 600;
}
/* Dropdown hiển thị kết quả */
#search-results {
    position: absolute;
    top: 42px;
    left: 0;
    width: 56%;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 900;
    border-radius: 5px;
    display: none;
    cursor: pointer;
}

#search-results.d-block {
    display: block;
    text-align: left;
}

#search-results a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    border-bottom: 1px solid #f1f1f1;
}

#search-results a:hover {
    background-color: #f9f9f9;
}

#search-results img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    object-fit: cover;
    border: 2px solid #ccc;
    padding: 2px;
    background-color: #fff;
}

#search-results strong {
    font-weight: normal;
    font-size: 14px;
}
#huongdanModalDateBox {
    background-color: orange;
    color: white;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: center; /* Căn giữa theo chiều ngang */
    align-items: center; /* Căn giữa theo chiều dọc */
    margin-top: 15px;
    width: 28%;
    text-align: center; /* Đảm bảo nội dung chữ căn giữa trong trường hợp nhiều dòng */
}


#huongdanModalDate {
    margin: 0; /* Loại bỏ khoảng cách mặc định */
    font-size: 14px; /* Điều chỉnh kích thước chữ nếu cần */
}

/* Default styles (áp dụng cho màn hình lớn hơn 764px) */

/* Màn hình tối đa 764px */
@media (max-width: 768px) {
    html{
        width: 100%;
    }
    header {
        flex-direction: column;
        padding: 10px 20px;

    }
    .nav-links {
        display: flex;
        gap: 70px;
    }
    .main-content {
        height: auto;
    }
    .main-content .right h1 span {
        font-size: 35px;
    }
    .faq-container {
        margin: 20px 0px 0px 0px;
        gap: 10px;
        align-items: baseline;
    }
    .faq-list,
    .faq-form-container {
        width: 100%;
    }
    .carousel-card {
        min-width: 45%;
        height: auto;
    }
    .carousel-container {
        width: 94% !important;
    }
    .carousel-button {
        width: 50px;
        height: 50px;
        font-size: 2em;
    }
    .footer {
        margin: 10px;
    }
    .footer > div {
        display: flex;
        flex-direction: column;
    }
    .footer > div > div {
        flex: none; /* Đặt kích thước mặc định */
        margin-bottom: 20px; /* Tạo khoảng cách giữa các hàng */
    }
    .modal-registration{
        width: 53%;
        height: 64%;
    }
    .modal button, .modal-registration button{
        margin: 34px auto 10px auto;
    }
    .main-content .right .search-container input[type="text"], select{
        font-size: 13px;
    }
    .main-content .right h1 span {
        font-size: 25px;
    }
    .search-container{
        flex-direction: column;
        align-items: flex-start!important;
    }
    .huongdan-modal{
        width: max-content;
        max-width: 90%;
    }
    .modal h2, .modal-registration h2{
        margin-top: 0px;
        margin-bottom: 25px;
    }
}


/* Màn hình tối đa 425px */
@media (max-width: 426px) {
    .nav-links {
        display: flex;
        gap: 20px;
        width: 100%;
        text-align: center;
    }
    .nav-links a{
        font-size: 13px;
    }
    .main-content .right h1 span {
        font-size: 21px;

    }
    .main-content .right .search-container input[type="text"],
    .main-content .right .search-container select {
        width: 100%;
        font-size: 13px;
    }
    .main-content .right .search-container button {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }
    .carousel-card {
        min-width: 44%;
    }
    .article-title {
        font-size: 12px;
        font-weight: 600;
    }
    #huongdanModalImage {
        width: 302px;
        height: 150px;
        margin: auto 20px;
    }
    #huongdanModalDateBox{
        width: 55%;
    }
    .floating-button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .modal-registration {
        width: 70%;
        height: auto;
    }
    .modal button, .modal-registration button {
        width: 45%;
        padding: 11px;
    }
    .search-container{
        align-items: flex-start!important;
    }
    .faq-list li{
        font-size: 14px;
    }
    .faq-form-container{
        padding: 4px;
    }
    .faq-container {
        margin: 20px 0px 0px 0px;
        gap: 10px;
        align-items: baseline;
        padding: 8px;
    }
    .toggle-button{
        margin-top: 0px;
    }
    #search-results{
        width: 100%;
    }
    #search-results strong{
        font-size: 12px;
    }
}
/* Màn hình tối đa 425px */
/* Responsive Footer */


/* Màn hình tối đa 375px */
@media (max-width: 376px) {
    header {
        padding: 8px 15px;
    }
    .logo img {
        height: 30px;
    }
    .nav-links {
        gap: 5px;
    }
    .nav-links a {
        font-size: 12px;
    }
    .main-content .right h1 span {
        font-size: 24px;
    }
    .main-content .right .search-container input[type="text"],
    .main-content .right .search-container select {
        font-size: 0.8em;
        padding: 8px;
    }
    .carousel-button {
        width: 40px;
        height: 40px;
        font-size: 1.8em;
    }
    .modal-registration {
        padding: 10px;
        font-size: 14px;
    }
    #huongdanModalImage {
        width: 282px;
        height: 130px;
        margin: auto 8px;
    }
    #huongdanModalDateBox{
        width: 65%;
    }
    .faq-title {
        font-size: 1.5em;
    }
    footer {
        flex-direction: column;
        text-align: center;
        font-size: 10px;
    }
    footer div {
        margin-bottom: 15px;
    }
}
