:root {
	--color-1 : #CC0000;

    --font-family : 'Arial', sans-serif;
    --font-size   : 16px;

    --border-radius : 1rem;
}

html, body {
    margin           : 0;
    padding          : 0;
    font-family      : var(--font-family);
    font-size        : var(--font-size);
    background-color : var(--color-bckg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%239C92AC' fill-opacity='0.03' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Navigation */
nav {
    position        : fixed!important;
    top             : 0;
    width           : 100%;
    display         : flex;
    justify-content : space-between;
    align-items     : center;
    z-index         : 1050;

	background              : #FFFFFF;
    -webkit-backdrop-filter : blur(5px);
    backdrop-filter         : blur(5px);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(95, 95, 95, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-toggler {
    border-color : none!important;
    outline      : none!important;
}
.navbar-brand {
	font-weight : bold!important;
}
.nav-link, .navbar-brand {
    color : #5F5F5F!important;
}
.nav-link:hover, .navbar-brand:hover {
    color : #000000!important;
}

footer {
    display         : flex;
    justify-content : center;
    align-items     : center;
    height          : 5vh;
    background-color: #FFFFFF;
    color           : #000000;
}