@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700;900&display=swap');

*, *::before, *::after {
	box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    background: #eee;
    font-family: Roboto, sans-serif;
}

.name {
    width: 100%;
    height: 70px;
    background: #4caf50;
	color: #fff;
    margin: 0;
	border-top: 12px solid #43a047;
	text-align: center;
	font-size: 18px;
	padding-top: 24px;
}

.name strong {
    font-weight: 800;
}

.align {
    width: 100%;
    margin: 0;
    text-align: center;
}

.align .head {
    margin-top: 0;
    border-bottom: 2px solid #43a047;
    margin-bottom: 12px;
    background: #4caf50;
    color: white;
    text-align: center;
    padding-bottom: 24px;
}

.align .head h1 {
	margin: 0;
	margin-bottom: 8px;
	font-size: 42px;
}

.align .head strong {
    font-weight: 300;
}

.align .main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: 10%;
    margin-right: 10%;
}

.align .main .generatorBox select {
    border: none;
    box-sizing: content-box;
    padding: 12px 16px 12px 12px;
    border-right: 16px solid white;
    border-left: 4px solid #4caf50;
    font-family: Roboto, sans-serif;
    border-radius: 3px;
    cursor: pointer;
    color: #333;
}

.align .main .generatorBox select:hover {
    border-left: 4px solid #43a047;
    color: #000;
}

.align .main .generatorBox select:active {
    background: #eee;
    border-right: 16px solid #eee;
}

.align .main .generatorBox button {
	color: black;
	text-decoration: none;
	padding: 12px 16px;
	margin: 4px 16px;
	margin-top: 16px;
	background: #4caf50;
	border-radius: 3px;
	color: white;
	-webkit-box-shadow: 4px 4px 0px 0px rgba(67, 160, 71, 1);
	-moz-box-shadow: 4px 4px 0px 0px rgba(67, 160, 71, 1);
	box-shadow: 4px 4px 0px 0px rgba(67, 160, 71, 1);
	border: none;
	font-family: Roboto, sans-serif;
}

.align .main .generatorBox button:hover {
	color: #eee;
	-webkit-box-shadow: 3px 3px 0px 0px rgba(67, 160, 71, 1);
	-moz-box-shadow: 3px 3px 0px 0px rgba(67, 160, 71, 1);
	box-shadow: 3px 3px 0px 0px rgba(67, 160, 71, 1);
	transform: translate3d(1px, 1px, 0);
}
.align .main .generatorBox button:active {
	background: #388e3c;
	transform: translate3d(4px, 4px, 0);
	-webkit-box-shadow: 0px 0px 0px 0px rgba(67, 160, 71, 1);
	-moz-box-shadow: 0px 0px 0px 0px rgba(67, 160, 71, 1);
	box-shadow: 0px 0px 0px 0px rgba(67, 160, 71, 1);
	border: none;
}

.align .main .generatorBox table {
	border: none;
}
.align .main .generatorBox table thead tr, 
.main .generatorBox table tbody tr, 
.align .main .generatorBox table thead tr th, 
.main .generatorBox table tbody tr td {
	padding: 8px;
	margin: 8px;
}

.align .main .generatorOutput h3, .align .main .generatorOutput h4 {
	margin-bottom: 2px;
	margin-top: 2px;
}

.align .main .generatorOutput h3 {
    margin-top: 12px;
}



