:root {
    --light-color: whitesmoke;
    --dark-color: #222;
    --accent-color: coral;
}

[theme=dark] {
    --light-color: #222;
    --dark-color: whitesmoke;
}

body {
    background-color: var(--light-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 0;
    margin: 0;
    color: var(--dark-color);
}
/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}
  
/* Hide scrollbar for IE, Edge and Firefox */
body {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

header {
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    background-color: var(--light-color);
    height: 55px;
    font-size: 13pt;
    width: 100%;
    border-top: solid 2px var(--dark-color);
    border-bottom: solid 2px var(--dark-color);
}

header div {
    position: relative;
    top: 50%;
    transform: translate(0, -50%);
    display: inline-block;
    margin-left: 10px;
}

header div a {
    color: var(--dark-color);
}

header svg {
    float: right;
    position: relative;
    height: 100%;
    padding-right: 10px;
    padding-left: 10px;
    border-left: solid 2px var(--dark-color);
    cursor: pointer;
}
header svg:hover {
    background-color: var(--accent-color);
}

.underline {
    left: 0;
    top: 30px;
    position: absolute;
    right: auto;
    height: 1px;
    bottom: 0;
    margin-left: 0px;
    background-color: var(--dark-color);
    width: 0%;
    transition: 0.3s;
}

.underlined {
    width: 100%;
}

header div:hover > .underline {
    width: 100%;
}

a {
    text-decoration: none;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
        -webkit-user-select: none; /* Safari */
        -khtml-user-select: none; /* Konqueror HTML */
            -moz-user-select: none; /* Old versions of Firefox */
            -ms-user-select: none; /* Internet Explorer/Edge */
                user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
}

/* featured slides */
#featured {
    width: 100%;
    height: 80%;
    margin-top: 80px;
    margin-bottom: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featuredSlide {
    cursor: pointer;
    border: solid 2px var(--dark-color);
    display: flex;
    align-items: center;
    text-shadow: 5px 5px 0px var(--accent-color);
    justify-content: center;
    color: #222;
    width: 95%;
    height: 100%;
}

.featuredSlide div {
    position: absolute;
    text-align: center;
    width: 100%;
    margin-top: -5%;
}

.featuredSlide:hover {
    background-color: var(--accent-color);
}

.featuredSlide img {
    height: 100%;
    overflow: hidden;
}

.slidePrev,
.slideNext {
    position: absolute;
    padding: 0px;
    width: 32px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 0;
    border: 0px;
    top: 50%;
    transform: translate(0, -50%);
    opacity: 0.8;
    transition: opacity 0.15s ease;
}

.slidePrev:hover,
.slideNext:hover {
    background-color: var(--accent-color);
}
.slidePrev button img,
.slideNext button img {
    padding: 0%;
    margin: 0%;
}
.slideNext {
    right: calc(2.5% + 10px);
    margin-right: 0%;
}
.slidePrev {
    left: calc(2.5% + 10px);
    margin-left: 0%;
}

/* landing page */
.description {
    margin-top: -100px;
    padding: 30px;
    width: calc(100% - 60px);
    text-align: center;
    font-size: 20pt;
}