@import "login.css";
@import "hero.css";
@import "navigation.css";
@import "demo.css";
@import "admin.css";
@import "gallery.css";


/* Basic styles */

:root {
    color-scheme: dark;
}

html {
    width: 100%;
    height: 100%;
}

body, html {
    margin: 0;
    padding: 0;
}

body {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    font-family: novel-sans-pro, sans-serif;
    font-weight: 400;
    font-style: normal;
    background: radial-gradient(circle, #00072c, #000000, #180224, #0f0017, #00072c);
    background-size: 500% 500%;
    animation: gradient 25s ease-in-out infinite;
    min-height: 100%;
    width: 100%;
    margin: 0;
}

a {
    color: #815cef;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Navigation styles */

nav {
    padding-top: 20px;
    color: #fff;
    text-align: right;
    position: relative;
    z-index: 1;
}

nav a {
    color: #fff;
    padding: 20px;
}

nav a:hover {
    color: #fff;
    text-decoration: underline;
}

.btn {
    display: inline-block;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    text-decoration: none;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
}

.btn-medium {
    padding: 10px 20px;
    width: 150px;

}

.btn-primary:hover {
    background-color: #0069d9;
    text-decoration: none;
}

.icon-btn {
    width: 20px;
    height: 20px;
    position: relative;
    filter: invert(100%);
}

h4 {
    padding-top: 20px;
    padding-left: 20px;
    font-size: 20px;
    line-height: 24px;
    color: white;
    margin: 0;
    text-align: left;
    font-family: aktiv-grotesk-extended, sans-serif;
    font-weight: 400;
    font-style: normal;
    max-width: 260px;
}

/* Typography Styles */
h1 {
    font-family: aktiv-grotesk-extended, sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 64px;
    line-height: 64px;
    color: white;
    margin: 20px 0px;
    padding: 20px;
}

h2 {
    font-family: novel-sans-pro, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 64px;
    line-height: 64px;
    color: white;
    margin: 20px 0px;
    position: relative;
    z-index: 1
}

h3 {
    font-family: aktiv-grotesk-extended, sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 26px;
    line-height: 32px;
    color: white;
    margin: 20px 0px;
}

h5 {
    font-family: aktiv-grotesk-extended, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    color: white;
    margin: 20px 0px;
}

p {
    font-family: novel-sans-pro, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 28px;
    color: white;
    opacity: 0.75;
}

.date {
    text-align: left;
    padding-left: 20px;
    padding-top: 0px;
    margin-top: 4px;
    opacity: 0.35;
}


.is-danger {
    color: lightcoral;
}

.display-none {
    display: none;
}

.opacity-reduced {
    opacity: 0.2;
}

.opacity-reduced:hover {
    opacity: 0.7;
}

.black-bg {
    background: black;
}

.icon {
    max-width: 30px;
    max-height: 30px;
    position: absolute;
    margin-left: -35px;
    margin-top: -2px;
}

#icon-fullscreen-off {
    display: none;
}