/* MAIN */

:root {
    --text-color: #06c;
    /*--accent-color: rgb(223, 67, 67);*/
    --accent-color: #8b2727;
}
body {
	background-color: #000;
}
span.accent{
    color: var(--accent-color);
    font-weight: bold;
}

@font-face
{
	font-family: shigotoFont;
	src: url("../assets/ShigotoMemogaki-Regular.ttf");
}
.shigoto
{
	font-family: shigotoFont;
}
.display-7 {
    font-size: 1.8rem;
    line-height: 1.25;
}

a.img-link
{
	color: inherit;
	text-decoration: none;
}
a:hover.img-link
{
	color: var(--accent-color);
	text-decoration: none;
}

/* LAYOUT */

.video-bg {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 0;
}