/*
GENERAL SETTINGS
*/

html {
    height: 100vh;
    width: 100vw;
    max-height: 100vh;
    max-width: 100vw;
    font-size: 175%;
    padding: 10px;
    margin: 0px;
}
body {
    height: 100%;
    padding: 0px;
    margin: 0px;
}
h1 {
    margin-top: 0px;
}
input, textarea, select {
    font-size: inherit;
}
input[type="checkbox"], input[type="radio"] {
    transform: scale(1.75);
    margin-right: 20px;
}
table {
    border-collapse: collapse;
}

/*
ALIGNMENT
*/

.acenter {
    text-align: center;
}
.aleft {
    text-align: left;
}
.aright {
    text-align: right;
}
.vatop {
    vertical-align: top;
}
.vabottom {
    vertical-align: bottom;
}
.fright {
    float: right;
}
.fleft {
    float: left;
}

/*
COLORS
*/

.bghome {
    background-color: aquamarine;
}
.impacttext {
    background-color: black;
    color: white;
}
.bgprofile {
    background-color: #2af689;
}
.ci {
    color: inherit;
    background-color: inherit;
}
.bgstore {
    background-color: black;
    color: white;
}
.bgdefault {
    background-color: white;
    color: black;
}

/*
FONTS
*/

.fslarger {
    font-size: 120%;
}

/*
PADDING
*/

.padsmall {
    padding: 3px;
}
.padmedium {
    padding: 5px;
}
.padlarge {
    padding: 15px;
}

/*
BORDERS
*/

.borderthin {
    border: 1px solid black;
}
.bordernormal {
    border: 3px solid black;
}
.bordermedium {
    border: 3px double black;
}
.tdtafter {
    border-right: 1px solid black;
}
.tdtbelow {
    border-bottom: 1px solid black;
}
.tdtabove {
    border-top: 1px solid black;
}

/*
STRETCH
*/

.wide {
    width: 100%;
}
.tall {
    height: 100%;
}

/*
FLEX
*/

.spacedcontainer {
    display: flex;
}
.spaceditem {
    flex: 1 1 auto;
}