
/*Общие сбросы*/
* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/*Базовые стили для всей страницы*/
body {
    min-height:100vh;
    display:flex;
    flex-direction:column;
    background:white;
    font-family:'Inter', sans-serif;
    color:#05668D;
}

/*Шапка*/
.hero {
    width:100%;
    height:220px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(120deg,#05668D,#427AA1);
    box-shadow: 0 8px 25px rgba(5,102,141,0.25);
}

/*Заголовок шапки*/
.hero h1 {
    font-family:'Montserrat', sans-serif;
    font-size:56px;
    font-weight:700;
    color:white;
    letter-spacing:3px;
}

/*Меню навигации*/
.menu {
    width:80%;
    margin:35px auto;
    padding:25px;
    border-radius:20px;
    background:linear-gradient(120deg,#05668D,#427AA1);
    display:flex;
    justify-content:center;
    gap:90px;
    box-shadow: 0 8px 25px rgba(5,102,141,0.25);
}

/*Шрифты меню*/
.menu a {
    font-family:'Inter', sans-serif;
    text-decoration:none;
    color:white;
    font-size:22px;
    font-weight:700;
}

/*Футер(подвал)*/
.author {
    margin-top:auto;
    width:100%;
    background:#05668D;
    color:white;
    text-align:center;
    padding:25px;
    font-family:'Montserrat', sans-serif;
    font-size:22px;
    letter-spacing:3px;
}