@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Slab:wght@100..900&family=Rubik:ital,wght@0,300..900;1,300..900&family=Shantell+Sans:ital,wght@0,300..800;1,300..800&display=swap');
body {
    font-family: 'Roboto Slab', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #d9d9d9;
}

header {
    margin-top: 20px;
    padding: 10px;
    background-color: #b57edc;
    height: 120px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

header .main-icon {
    width: 10vw;
    padding: 10px;
    align-self: center;

}

header .title {
    flex: 4;
    text-align: center;
    align-self: center;
    font-size: 3.5em;
    font-family: "Shantell Sans", cursive;
    font-optical-sizing: auto;
    font-weight: 800;
    letter-spacing: -2px;
    font-style: normal;
    font-variation-settings:
            "BNCE" 0,
            "INFM" 0,
            "SPAC" 0;
}

footer {
    background-color: #b57edc;
    padding: 10px;
    text-align: center;
    font-family: "Rubik", sans-serif;
    letter-spacing: -0.5px;
    font-weight: 400;
    margin-bottom: 20px;
}

.container {
    width: 80%;
    margin: 0 auto;
    box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.1);
}

.container-fluid-ns {
    width: 90%;
    margin: 0 auto;
}

nav {
    background-color: #a86fde;
    flex: 1;
    align-self: center;
    text-align: center;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding:10px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: -1px;
}

nav ul li {
    display: inline;
    margin: 0;
    padding:10px;
    font-weight: 600;
    font-size: 1.2em;
    transition: 0.2s;
}

li.active {
    background-color: #8557cb;
    font-weight: 700;
}
li.active a {
    color: #d5d5d5;
}

li:hover {
    background-color: #8557cb;
    text-decoration: none;
}

article.content {
    padding: 20px;
    background-color: #fff;
}

article.banner {
    height: 250px;
    width: 100%;
    overflow: hidden;
}

.banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

p {
    font-size: 1.1em;
}

h1 {
    color: #7120c0;
    font-size: 1.5em;
}


