@import "header.css";
@import "_popup.css";

html, body, html body {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;

}
img {
    display: block;
    margin: 0;
    padding: 0;
    max-width: 100%;
    height: 100%;
}

.container {
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    /*padding: 0 10px;*/
}

.flex-row {
    display: flex;

}

/* AFFILATE LINK BUTTON */

.aff-link {
    display: inline-block;
    margin-top: 12px;
    background: #f0b90b;
    color: #000;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* hover */
.aff-link:hover {
    background: #ffd24d;
    transform: translateY(-1px);
}

.aff-link:active {
    transform: scale(0.98);
}

/* прибрати синій колір */
.aff-link:visited {
    color: #000;
}

input {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
}




@import "footer.css";