/* ------------------------------------- */
/* Font faces */
/* ------------------------------------- */
@font-face {
font-family: 'Walla';
src: url('../fonts/SDWalla-Book.woff2') format('woff2');
}
/* ------------------------------------- */
/* Native */
/* ------------------------------------- */
* {
box-sizing: border-box;
}
/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE and Edge */
body {
}
body {
background-color: var(--color-background-color)!important;
transition: background 0.5s;
}
html,
body {
margin: 0;
}
h1,
h2,
h3,
h4,
h5,
p,
a,
button {
line-height: 1.2;
color: var(--color-font);
text-decoration: none;
padding: 0;
margin: 0;
font-weight: normal;
font-family: Walla;
letter-spacing: 0.5px;
font-size: 0.8rem;
}
.spectrodrama {
height: calc(var(--vh) * 100);
}
/* ------------------------------------- */
/* CSS Variables */
/* ------------------------------------- */
/* Global (Dark Theme) */
:root {
--vh: 1vh;
--color-background-color: #000000;
--color-font: #aaaaaa;
--color-active: #ffffff;
--color-inactive: #aaaaaa;
--color-background-grey: #222;
}
/* Global (Light Theme) */
.dark-mode {
--color-background-color: #000000;
--color-font: #aaaaaa;
--color-active: #ffffff;
--color-inactive: #aaaaaa;
--color-background-grey: #222;
}
.light-mode {
--color-background-color: #f8f8f8;
--color-font: #000000;
--color-active: grey;
--color-inactive: #000000;
--color-background-grey: #e9e9e9;
}
/* ------------------------------------- */
/* Selection TXT */
/* ------------------------------------- */
::-moz-selection { /* Code for Firefox */
color: yellow;
background: transparent;
}
::selection {
color: yellow;
background: transparent;
}
/* ------------------------------------- */
/* Nopadding */
/* ------------------------------------- */
.nopadding {
padding: 0px!important;
}
.nopadding-right {
padding-right: 0px!important;
}
.padding-5-right {
padding-right: 5px!important;
}
.nopadding-left {
padding-left: 0px!important;
}
.padding-5-left {
padding-left: 5px!important;
}
/* ------------------------------------- */
/* Vertical Center */
/* ------------------------------------- */
.vertical-center {
min-height: 100%;
min-height: 100vh;
display: flex;
align-items: center;
}
/* ********************************************************************** */
/* (sm) Small devices (landscape phones, 576px and up) */
/* ********************************************************************** */
@media (min-width: 576px) {

}
/* ********************************************************************** */
/* (md) Medium devices (tablets, 768px and up) */
/* ********************************************************************** */
@media (min-width: 768px) {
}
/* ********************************************************************** */
/* (lg) Large devices (desktops, 992px and up) */
/* ********************************************************************** */
@media (min-width: 992px) {
}
/* ********************************************************************** */
/* (xl) Extra large devices (large desktops, 1200px and up) */
/* ********************************************************************** */
@media (min-width: 1200px) {
.container-about-title {
}
/* ********************************************************************** */
/* ********************************************************************** */
/* (xl) Extra large devices (large desktops, 1200px and up) */
/* ********************************************************************** */
@media (min-width: 1700px) {
}
/* ********************************************************************** */
/* Unused media queries */
/* ********************************************************************** */
/*  Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
...;
}
/*  Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
...;
}
/*  Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
...;
}
/*  Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
...;
}
/*  Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
...;
}
/*  Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
...;
}
/*  Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
...;
}
/*  Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
...;
}