/* Reset CSS */

/* Обнулення стилів для усіх елементів */
* {
    margin: 0;
    padding: 0;
    border: 0;
}

* ,*:after, *:before {
    /* Це важливо для визначення правильних розмірів елементів */
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; 

}

:focus, :active {
    outline: none;
}

a:focus, a:active {
    outline: none;
}

nav, footer, header, aside {
    display: block;
}

/* Явне задання значень для деяких ключових елементів */
body, html {
    height: 100%;
    width: 100%;
    font-size: 100%;
    font-size: 14px;
    line-height: 1;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* Обнулення стилів для списків */
li,
ul {
    margin: 0;
    list-style: none;
}

/* Скидання стилів для заголовків */
h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
}

/* Обнулення стилів для таблиць */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Явне вказування кольору тексту та фону */
body {
    color: #000;
    background: #fff;
}

/* Явне вказування стандартного шрифта та інших властивостей */
body,
input,
button,
textarea,
select {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}


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

a:hover {
    text-decoration: none;
  }

img {
    vertical-align: top;
}