/* @font-face {
   font-family: 'Century Gothic';
   src: url('../font/CenturyGothic-Bold.woff2') format('woff2'),
      url('../font/CenturyGothic-Bold.woff') format('woff');
   font-weight: 700;
   font-style: normal;
   font-display: swap;
}

@font-face {
   font-family: 'Century Gothic';
   src: url('../font/CenturyGothic.woff2') format('woff2'),
      url('../font/CenturyGothic.woff') format('woff');
   font-weight: 400;
   font-style: normal;
   font-display: swap;
} */

* {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    background-color: #fff;
    font-family: 'Roboto', sans-serif;
}

button:focus-visible {
    outline: 2px solid #ffc000 !important;
    outline: -webkit-focus-ring-color auto 5px !important;
}

:focus-visible {
    outline: none;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: .4s;
}

a:hover {
    color: #ffc000;
}

p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

.entry-content {
    margin: 25px 0;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #d7a21f;
}

::-webkit-scrollbar-thumb:hover {
    background: #000;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}
