@import url("/templates/global.css");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;900&display=swap');

body {
    background-color: #b8a6cd;
}

a {
    color: #440099;
}

.header {
    width: 100%;
    background-color: white;
    border-top: 35px solid #303030;
    margin-bottom: 30px;
}

.header__main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
}

.header__logo {
    width: 120px;
}

.nav__wrapper {
    width: 100%;
    background-color: #440099;
    display: flex;
    justify-content: center;
}

.header__nav {
    display: flex;
    flex-wrap: wrap;
    padding: 0 10px;
}

.header__nav a {
    color: white;
    line-height: 45px;
    padding: 0 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 400;
}

.header__nav a:hover {
    background-color: #2d0066;
    text-decoration: none;
}

.header__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    color: black;
    font-weight: 900;
    padding-left: 20px;
}