/*
Colours
#222831 Dark Grey
#393e46 Grey
#00adb5 Blue
#eeeeee Light Grey

*/

body {
    font-family: "Ubuntu";
    background-color: #eeeeee;
    color: #00adb5;
}

h1 {
    font-size: 2.5rem;
}

header {
    padding-top: 20px;
    padding-bottom: 10px;
    background-color:#393e46 ;
}

.main-heading {
    text-align: center;
}

.sketch-description {
    margin-left: 100px;
    margin-right: 100px;
}
.grid-wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.grid-right{
   text-align: left;
}

.buttonLine{
    padding-bottom: 15px;
}

#sketch {
    text-align :center;
}

Button {
    width: 100px;
    height: 50px;
	background-color:#00adb5;
	border-radius:5px;
	border:1px solid #3866a3;
	display:inline-block;
	cursor:pointer;
	color:#3866a3;
	font-size:13px;
	font-weight:bold;
    padding: 10px;
}

Button:hover {
	background-color:#468ccf;
}

Button:active {
	position:relative;
	top:1px;
}