@font-face {
  font-family: MainFont1;
  src: url(../Fonts/CutieTopRegular-VArx.ttf);
}
@font-face {
  font-family: MainFont2;
  src: url(../Fonts/Frutiger.ttf);
}

body, html {
    height: 100%;
    margin: 0;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

body {
    padding: 15px;
    background-image: url("../Images/UI/WebsiteBG.png");
    cursor: url("../Images/UI/WebsiteCursor.ico"), auto;
}

p, ul, b, .desc{
    font-family: MainFont2;
    text-align: center;
    font-size: 24px;
}

ul, li, ol {
    font-size: 18px;
    padding-bottom: 6px;
}

.container {
    position: relative;
    width: 50%;
}

.text {
    color: white;
    font-family: MainFont2;
    font-size: 24px;
    text-align: center;
}

button {
    color: rgb(62, 68, 153);
    font-family: MainFont2;
    font-size: 24px;
    align-items: center;
}

.backButton {
    top: 0;
    left: 0;
    padding: 25px;
    position: fixed;
}

.volume {
    top: 0px;
    left: 75px;
    padding: 25px;
    position: fixed;
}

.lightmode
{
    padding: 15px;
    background-image: url("../Images/UI/WebsiteBGLightMode.png")
}


/* Toggles */
.lightmodetoggle {
    top: 0;
    right: 0;
    padding: 75px;
    position: fixed;
    filter: drop-shadow(0 0 1rem rgb(255, 241, 164));
}

.darkmodetoggle {
    top: 0;
    right: 0;
    padding: 75px;
    position: fixed;
    filter: drop-shadow(0 0 1rem rgb(255, 234, 44));
}

/* Home Buttons */
.btn-group {
    text-align: center;
    padding-top: 450px;
}

.homevolume {
    top: -25px;
    left: -60px;
    padding: 15px;
    position: fixed;
}

.changelogs {
    bottom: -15px;
    right: 40px;
    padding: 15px;
    position: fixed;
}

.homemusicButton {
    bottom: 0px;
    right: -30px;
    padding: 0px;
    position: fixed;
}


/* Button Hover */
.musicButton:hover, .volume:hover, .homevolume:hover, .backButton:hover, .homemusicButton:hover, .changelogs:hover, #topButton:hover {
    transform:scale(1.2);
    transition: 2s;
}


/* Headings */
h1 {
    color: CornflowerBlue;
    font-family: MainFont1;
    font-size: 64px;
    opacity: 0.75;
    text-align: center;
    padding-top: 175px;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: white;
}

h2 {
    color: Azure;
    font-family: MainFont1;
    font-size: 36px;
    opacity: 0.75;
    text-align: center;
}

h3 {
    color: rgb(145, 150, 219);
    font-family: MainFont1;
    font-size: 20px;
    opacity: 0.75;
    padding: 0px 0px 0px 1150px;
}

/* Music Button */
.musicButton
{
    bottom: 0;
    right: 0;
    padding: 25px;
    position: fixed;
}

/* Footer */
.footer {
    bottom: 0;
    left: 0;
    padding: 10px;
    font-size: 20px;
    position: fixed;
    color: Azure;
    text-align: left;
}

.middle {
    transition: .5s ease;
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

/* Container */
.container:hover .image {
    opacity: 0.3;
}

.container:hover .middle {
    opacity: 1;
}


/* Tabs */
/* Style the tab */
.tab {
  border: 1px solid BlueViolet;
  background-color: Lavender;
  text-align:center;
  overflow: hidden;
  position: relative;
  left: 50%;
  transform: translate(-50%, -50%);
  width:1200px;
  overflow: auto;
  border-radius: 25px 25px 25px 25px;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border-top: none;
  animation: fadeEffect 1s; /* Fading effect takes 1 second */
} 

/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

.div{
    text-align: center;
}

div.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

div.gallery-item {
  margin: 5px;
  border: 1px solid #ccc;
  width: 180px;
  margin-left: auto;
  margin-right: auto;
}

div.gallery-item:hover {
  border: 1px solid #777;
}

div.gallery-item img {
  width: 100%;
  height: auto;
}

div.gallery-item div.desc {
  padding: 15px;
  text-align: center;
}


/* Accordion for Work */
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

.accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}


/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: lavender;
  display: none;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}


/* Glowing Text Animation */
.glowtext {
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000;
    -webkit-animation: glow 2.0s linear infinite;
    animation: glow 2.0s linear infinite;
    font-size:2em;
    font-weight:bold;
}

@keyframes glow {
    0% { text-shadow: 0 0 30px pink; }
    50% { text-shadow: none; }
    100% { text-shadow: 0 0 30px pink; }
}

@-webkit-keyframes glow {
    0% { text-shadow: 0 0 30px pink; }
    50% { text-shadow: none; }
    100% { text-shadow: 0 0 30px pink; }
}


/* Table CSS */
table {
    width: 100%;
    display: block;
}
thead {
    display: inline-block;
    width: 100%;
    height: 20px;
    font-family: MainFont2;
    text-align: center;
    font-size: 18px;
}
tbody {
    height: 500px;
    display: inline-block;
    width: 100%;
    overflow: auto;
    font-family: MainFont2;
    text-align: center;
    font-size: 18px;
}

tr:nth-child(even){background-color: #f2f2f2}


/* Forms */
#fcf-form {
    display:block;
}

.fcf-body {
    margin: auto;
    font-family: MainFont2;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
    padding: 30px;
    padding-bottom: 10px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    width: 45%;
}

.fcf-form-group {
    margin-bottom: 1rem;
}

.fcf-input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.fcf-form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    outline: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.fcf-form-control:focus {
    border: 1px solid #313131;
}

select.fcf-form-control[size], select.fcf-form-control[multiple] {
    height: auto;
}

textarea.fcf-form-control {
    font-family: MainFont2;
    height: auto;
}

label.fcf-label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.fcf-btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .fcf-btn {
        transition: none;
    }
}

.fcf-btn:hover {
    color: #212529;
    text-decoration: none;
}

.fcf-btn:focus, .fcf-btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.fcf-btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.fcf-btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.fcf-btn-primary:focus, .fcf-btn-primary.focus {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.fcf-btn-lg, .fcf-btn-group-lg>.fcf-btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.fcf-btn-block {
    display: block;
    width: 100%;
}

.fcf-btn-block+.fcf-btn-block {
    margin-top: 0.5rem;
}

input[type="submit"].fcf-btn-block, input[type="reset"].fcf-btn-block, input[type="button"].fcf-btn-block {
    width: 100%;
}


/* Scrollbar */
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: lavender; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: BlueViolet; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: BlueViolet; 
}


/* Bullet Points */
li::marker {
  color: BlueViolet;
}


/* Sidenav */
.sidenav {
    height: 100%;
    width: 130px;
    position: fixed;
    z-index: 1;
    top: 100px;
    left: 10px;
    overflow-x: hidden;
    padding: 8px 0px;
}

.sidenav a {
    padding: 6px 16px 6px 16px;
}

.sidenav a:hover {
    color: #064579;
}

@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}


/* Lightbox */
.row > .column {
    padding: 8px 8px;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Create four equal columns that floats next to eachother */
.column {
    float: left;
    width: 15%;
}

/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #1e032e;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1800px;
}

/* The Close Button */
.close {
    color: white;
    position: absolute;
    top: 10px;
    right: 30px;
    font-size: 75px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

/* Hide the slides by default */
.mySlides {
    display: none;
}

.prev{
    left: 0;
}
/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: BlueViolet;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
    font-family: MainFont2;
    src: url(Frutiger.ttf);
    color: #000000;
    font-size: 18px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* Caption text */
.caption-container {
    text-align: center;
    background-color: black;
    padding: 2px 16px;
    color: white;
}

img.demo {
    opacity: 0.6;
}

.active,
.demo:hover {
    opacity: 1;
}

img.hover-shadow {
    transition: 0.3s;
}

.hover-shadow:hover {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#topButton {
  position: fixed;
  bottom: 15px;
  right: 90px;
  padding: 15px;
}