/* You can add global styles to this file, and also import other style files */
@import url("root.css");
@import url("_class.css");
@import url("header.css");

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    scroll-behavior: smooth;
}

html {
    overflow: auto;
}

body {
    margin: 0 auto;
    padding: 0;
}

main {
    max-width: var(--max-width);
    margin: 0 auto;
}

h1, h2, h3,
h4, h5, h6,
p, a {
    margin: 0 !important;
}

a {
    text-decoration: none !important;
    color: var(--dark-color);
}

a:hover {
    color: var(--white-color);
    text-decoration: none !important;
}

img, video {
    width: 100%;
    height: auto;
}

button[disabled] {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}
