@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --bg: #1F1F21;
    --bgsecondary: #242529;
    --text: #cfcfcf;
    --primary: #867e56;
    --secondary: #595333;
    --linkbg: #1C2B42;
    --linkbghover: #123263;
    --link: #6390D4;
    --white: #FFFFFF;
    --red: #e2483e;
}

html, body {
    margin: 0;
    padding: 0;   
}

body {
    width: 100vw;
    height: 100vh;
    background-color: var(--bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    color: var(--text);
    overflow-x: hidden;
}

a {color: var(--text);}

.advert-box {
    position: relative;
    cursor: pointer;
    transition: border-color 0.3s;
}

.advert-box .border-highlight {
    border-color: #3498db !important;
}

.advert-box input[type="file"] {
    display: none;
}