* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

img {
    width: 100%;
    object-fit: cover;
}

input {
    outline: 0;
    border: none
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #000;
}

button {
    border: none;
    background: none;
}

.de_iv_adv {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
    background-color: #FFFFFF;
    /* margin: 10px 0 0px; */
}

.postionFixed {
    width: 100%;
    min-height: 60px;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F8F8F8;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 9999;
}

footer {
    width: 100%;
    text-align: center;
    background-color: #000000;
    color: #fff;
    font-size: 13px;
    line-height: 1.6;
    padding: 25px 20px;
    margin-top: auto;
}

footer > div:first-child {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
}

footer .about {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

footer a:hover {
    color: #FE00BF;
}

.img-box {
    width: 100%;
    position: relative;
}

.img-box::before {
    content: '';
    display: block;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}