/* Common styles */
body {
    margin: 0px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: #272a3d;
    color: lightgray;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* Skewed Header */
.skewed-header {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.skewed-header > .header-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: 100%;
    transform: skewY(-6deg);
    transform-origin: top left;
    filter: brightness(50%);
}

.skewed-header > .skewed-header-wrapper {
    position: absolute;
    display: flex;
    justify-content: center;
    width: 100vw;
}

.skewed-header > .skewed-header-wrapper > .skewed-header-content {
    width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skewed-header > .skewed-header-wrapper > .skewed-header-content > .heading-wrapper {
    background-color: #c45dd2;
    color: lightgrey;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius:  2px;
    width: 250px;
    padding: 10px;
    text-align: center;

}

/* Navigation */
.navigation-wrapper {
    height: 190px;
    /* background-image: url(../images/backgrounds/featured-background.png); */
    color: lightgrey;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 60px 100px; 
    background-color: #c45dd2;
}

.links-wrapper-s {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.links-wrapper-s > .nav-link {
    width: 70px;
    text-align: center;
}

.links-wrapper-s > .nav-link a {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: lightgrey;
    text-decoration: none;
    transition: 0.5s;
    font-size: 0.9em;
}

.links-wrapper-s > .nav-link a:hover {
    color: #272a3d;
    letter-spacing: 2px;

}

.page-container {
    padding: 20px;
}