*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    font-family: "Segoe UI", "Inter", sans-serif;
    color: var(--academy-text-dark);
    background-color: var(--academy-light-gray);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    transition: var(--academy-transition);
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font-family: inherit;
    outline: none;
}

ul {
    list-style: none;
}