/*Layout Styling*/

body {
    background-color: darkslategrey;
    color: cornsilk;
    font-family: sans-serif, Verdana, Arial;
}

.ui.segment {
    background-color: beige;
}

header {
    color: darkslategrey;
}

h1 {
    font-size: 200%;
    padding: 1%;
}

h4 {
    font-size: 130%;
    text-decoration: underline rgb(84, 255, 86);
}

footer {
    margin-top: 2em;
    margin-bottom: 2em;
    padding-bottom: 1em;
}



/*Menu and Links*/

.ui.tabular.menu .item {
    color: white;   
}

.ui.tabular.menu .active.item {
    color: rebeccapurple;
    font-weight: bolder;
}

.ui.tabular.menu .item:hover {
    color: plum;
}

a {
    color: white;
}

a:visited {
    color: rebeccapurple;
}



/*Floating and Padding*/

.aside1 {
    float: right;
    align-self: flex-end;
}

span {
    padding: 1em;
    padding-right: 4em;
}




/*Altering Semantic UI*/

label {
    color: rgb(50, 10, 50) !important;
    font-weight: 300;
}

input {
    color: black;
}

.ui.form {
    padding: 2em;
    margin-top: 2em;
    background-color: rgb(184, 183, 153);
}

.ui.form .button:hover {
    color: white;
    background-color: rebeccapurple;
}

.ui.message {
    background-color: rgb(84, 255, 86);
    color: black;
}

.ui.message:hover {
    background-color: black;
    color: rebeccapurple;
}

.ui.card .header:hover {
    color: rebeccapurple !important;
}

.ui.card .icon:hover {
    color: red !important;
}

.ui.form {
    border: black medium;
    border-style: dashed;
}



/*Altering Semantic UI Tables*/

caption {
    background-color: rgb(84, 255, 86);
    font-weight: bold;
    padding: 1em;
}

.ui.table {
    border: grey medium dashed;
}

.ui.table thead th {
    background-color: grey;
    color: black;
}

.ui.striped.table > tr:nth-child(n), .ui.striped.table tbody tr:nth-child(n) {
    background-color: rgba(20, 216, 102, 0.415);
}

.ui.striped.table > tr:nth-child(2n), .ui.striped.table tbody tr:nth-child(2n) {
    background-color: rgba(74, 141, 83, 0.415);
}

.ui.selectable.table tbody tr:hover, .ui.table tbody tr td.selectable:hover {
    background-color: black !important;
    color: plum !important;
}