html {
    background: : #000;
    background-image: linear-gradient(360deg, rgb(230, 233, 233) 0%, rgb(216, 221, 221) 100%);
    -webkit-font-smoothing: antialiased;
}
* {
    box-sizing: border-box;
}

body {
    background: #000;
    box-shadow: 0 0 2px rgba(0, 0, 0.06);
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 auto;
    //max-width: 800px;
    padding: 2em 2em 4em;
}
.showcase {
    background-image: url(images/clouds.jpg);
    height: 400px;
    width: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.6;
}
nav{
    flex: 1;
    text-align: right;
}
nav ul li{
    list-style: none;
    display: inline-block;
    margin-right: 30px;
    color: #fff;
    min-height: 80px;
}
nav ul li a{
    text-decoration: none;
    color: #FFF;
    font-size: 14px:
}
nav ul li a:hover{
    color: #ff0000;
}

.column {
    float: left;
    padding: 10px;
}
.left {
    width: 30:;
}
.right {
    width: 70%;
}
.row:after {
    content: "";
    display: table;
    clear: both;
}
a:visited {
    color: white;
    background-color: transparent;
    text-decoration: none;
}
a:hover {
    color: red;
    background-color: transparent;
    text-decoration: underline;
}
.TTrow:after{
    content: "";
    display: table;
    clear: both;
}
.TTcolumn{
    float: left;
    width: 25%;
    padding: 10px;
    //height: 300px;
    min-width: 180px;
}
.TTcolumn h2 p{
    color: white;
}
.TTcolumn img{
    width: 100%;
    align-content: center;
    vertical-align: middle;
}

.CUrow:after{
    content: "";
    display: table;
    clear: both;
}
.CUcolumn{
    float: left;
    width: 50%;
    padding: 10px;
    color: white;
}
.CUcolumn input[type=text], input[type=email] {
    background-color: black;
    color: white;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-style: solid;
}
.CUcolumn textarea{
    background-color: black;
    color: white;
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
input[type=submit]{
    background-color: gray;
}