/* Подключение шрифтов */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Playfair+Display:wght@400;700&family=Lora:wght@400;700&display=swap');

/* Глобальные стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', sans-serif;
    color: #333;
    background-color: #f6f5f2;
    width: 100%;
    overflow-x: hidden;
}

/* Заголовки */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #4c90af;
}

/* Ссылки */
a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

/* Текст */
p {
    text-indent: 30px;
    line-height: 1.6;
}
button {
    position: static !important;
    transform: none !important;
}

