 *,
 *::before,
 *::after {
     box-sizing: border-box;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     margin: 0;
     background: var(--bg-main);
     color: var(--text-main);
     font-family: Georgia, "Times New Roman", serif;
     line-height: 1.6;
 }

 a {
     color: inherit;
     text-decoration: none;
 }

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

 button,
 input,
 textarea,
 select {
     font: inherit;
 }