:root {
    --bg-light: #1c4561;
    --bg-dark: #244476;
    --bg-darker: #131d2c;
    --bg-black: #0e131a;
    --accent: #5D94B9;
    --text-primary: #C8FFFF;
    --text-white: #FFFFFF;
    --bg-green: #094830;

    --bg-light-rgb: 28, 69, 97;       /* #1C4561 */
    --bg-dark-rgb: 36, 68, 118;       /* #244476 */
    --accent-rgb: 93, 148, 185;       /* #5D94B9 */
    --text-primary-rgb: 200, 255, 255; /* #C8FFFF */
    --bg-green-rgb: 9, 72, 48;        /* #094830 */
}


.smartflex {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: space-evenly;
}
.flex-row {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: space-around;
    flex-wrap: nowrap;
}

.flex-column {
    flex-direction: column;
}
.mw {
    width: 100%;
}
.mh {
    height: 100%;
}

body {
    width: 100%;
    height: 100vh;
    margin: 0;
    overflow-x: hidden; 
    background-color: var(--bg-black);
    color: var(--accent);
}
* {
    box-sizing: border-box;
}
p, h1, h2, a {
    margin: 0;
    font-family: Helvetica, Arial, sans-serif;
    text-decoration: none;
    color: var(--text-white);
    text-shadow: #0000006F 3px 5px 10px;
}
p {
    font-size: 20px;
}
.contentdiv h1 {
    font-size: 65px;
    margin: 10px 10px 0 10px;
    color: var(--text-primary);
    transition: 0.2s all;
}
.contentdiv h1:hover {
    color: var(--text-white);
}
.topbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px;
    background-color: rgba(36, 68, 118, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: #0000006F 0px 6px 20px;
    justify-content: space-around;
}
.topbar-spacer {
    height: 100px;
    width: 100%;
    position: initial;
    background-color: var(--bg-darker);
    opacity:1;
    box-shadow: none;
}
.topbar img {
    aspect-ratio: 1/1;
    height: 100%;
}
.topbar p {
    font-size: 25px;
    margin-left: 15px;
    margin-right: 15px;
}
.topbar a {
    font-size: 35px;
    margin-left: 15px;
    margin-right: 15px;
    transition: 0.2s all;
}
.topbar a:hover {
    transform:scale(1.05);
}
.topbar h1 {
    font-size: 35px;
    margin-left: 15px;
    margin-right: 15px;
}


.logocontainer {
    height: 90%;
    margin-left: 5px;
    margin-right: 5px;
    width: auto;
}

.splitcontainer {
    margin: 0px 0 15px 0;
}
.splithalf {
    width: 50%;
    margin: 5px;
    padding: 10px;
}
.splithalf img {
    aspect-ratio: 1/1;
    width: 700px;
    box-shadow: #0000006F 0px 6px 20px;
    border-radius: 30px;
    transition: all 0.2s;
}
.splithalf img:hover {
    transform: scale(1.02);
}
.splithalf h1 {
    font-size: 50px;
    margin: 10px;
    color: var(--text-primary);
    transition: 0.2s all;
}
.splithalf h1:hover {
    color: var(--text-white);
}
button {
    width: 200px;
    height: 50px;
    border-radius: 500px;
    margin: 10px;
    color: var(--text-primary);
    border-color: var(--text-primary);
    border: solid;
    background-color: var(--bg-darker);
    transition: 0.2s all;
    cursor: pointer;
}
button:hover {
    transform: scale(1.1);
    background-color: var(--text-primary);
    color: var(--bg-black);
}
button:active {
    transform: scale(0.9);
}
.logoimage {
    cursor: pointer;
    transition: 0.2s all;
}
.logoimage:hover {
    transform: scale(1.05);
}
.infoheader {
    background-color: var(--bg-darker);
    width: 100%;
    padding: 10px;
}

.killovolt-container {
    width: 95%;
    background-color: var(--bg-darker);
}
.killovolt-logo-container {
    width: 100%;
    border-radius: 10px;
    box-shadow: inset var(--text-white) 0px 0px 0px 0px;
    padding: 15px 0 15px 0;
    transition: 0.2s all;
}
.killovolt-logo-container:hover {
    box-shadow: inset var(--text-white) 0px 0px 25px 0px;
}
.killovolt-logo-container:hover .killovolt-logo {
    transform: scale(1.01);
}
.killovolt-logo {
    width: 50%;
    transition: 0.2s all;
}
h1 {
    text-shadow: black 0px 6px 8px;
}
.precontainer {
    background-color: var(--bg-black);
    width: 98%;
    border-radius: 20px;
}