/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

@font-face {
    font-family: 'American Captain';
    src: url("/assets/american-captain-ef8feff0.ttf") format('truetype');
}

@font-face {
    font-family: Futura PT Bold;
    src: url("/assets/futura-pt-bold-c40299bb.otf") format('opentype');
}

@font-face {
	font-family: Futura PT Book;
	src: url("/assets/futura-pt-book-9aab9d13.otf") format('opentype');
}

@font-face {
	font-family: DIN Medium;
	src: url("/assets/din-medium-58c79fd8.ttf") format('truetype');
}

body {
    background-color: #aaaaaa;
    margin: 6px;
}

.main_flex {
    display: flex;
    flex-direction: horizontal;
}

.sidebar {
    min-width: 25%;
    max-width: 33%;
    height: calc(100vh - 12px);

    background-color: black;

    text-align: center;
    color: white;
}

.card {
    min-width: 66%;
    max-width: 75%;
    height: calc(100vh - 12px);

    justify-content: center;
    align-items: center;
}

.character_display {
    margin: auto;

    width: 1200px;
	height: 700px;

    background-color: white;
}

.combat_display {
    margin: auto;

    width: 635px;
    height: 880px;

    background-color: white;
}

.zord_display {
    margin: auto;

    width: 700px;
	height: 1200px;

    background-color: white;
}

h1 {
    margin: auto;
    font-family: 'American Captain';
}

h3 {
    margin: auto;
    font-family: 'Futura PT Bold';
}