* {
    box-sizing: content-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Lato", sans-serif;
    font-size: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    font-style: normal;
}

h2 {
    font-size: 30px;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.l-header {
    background:
        linear-gradient(45deg,rgba(255, 235, 13, 0.7) 7%, rgba(60, 75, 207, 0.92) 50%, rgba(70, 184, 100, 0.52) 81%, rgba(255, 255, 255, 0.15) 100%),
        linear-gradient(138deg,rgba(148, 102, 179, 1) 0%, rgba(15, 7, 130, 1) 17%, rgba(8, 82, 134, 1) 38%, rgba(19, 111, 176, 1) 50%, rgba(0, 171, 148, 1) 72%, rgba(13, 0, 99, 1) 100%);
    box-shadow: inset 0 0 5px #000;
}

.l-header__container {
    height: 200px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.a-logo {
    font-family: "Patua One", serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    font-size: 40px;
    text-shadow: 0 0 5px rgba(255, 255, 255, .5);
}

.l-header__tagline {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    font-style: italic;
    font-size: 20px;
}

@media screen and (width >= 900px) {
    .l-header__container {
        height: 450px;
    }

    .a-logo {
        font-size: 80px;
    }

    .l-header__tagline {
        font-size: 25px;
    }
}

.l-mainMenu__menu {
    display: flex;
    gap: 15px;
    line-height: 1.5;
    font-family: "DM Serif Display", serif;
    font-size: 20px;
}

.l-mainMenu__menu,
.l-mainMenu__menu li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.l-mainMenu__menu {
    border-bottom: 1px solid #000;
    padding: 15px 0;
}

.l-mainMenu__menu a {
    color: #000;
    text-decoration: none;
}

.l-main {
    padding-bottom: 50px;
}

.l-main__content {
    max-width: 800px;
}

.l-main p {
    line-height: 1.5;
    margin: 0 0 .5em;
}
