@font-face {
    font-family: lato;
    src: url(../font/lato.woff2);
}

* {
    margin: 0;
    padding: 0;
}

body {
    width: 100vw;
    height: 100vh;
    
    font-family: Lato, sans-serif;

    background: radial-gradient(ellipse at center,#192d38 0,#211f2f 100%);
    
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.title {
    color: white;
    font-size: 40px;
    font-weight: 700;
    text-shadow: 0 2px 5px #000;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.title span {
    margin-left: 20px;
}

.logo {
    fill: #08ffbd;
}

.content {
    width: 95vw;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main{
    background: linear-gradient(180deg,#131321 0,#1f1c2c);
    height: 70vh;
    width: 70vw;
    border: 1px solid #08ffbd;

    display: flex;
    justify-content: center;
    align-items: center;
}

.form {
    margin: 20px 60px;
    font-size: 17px;
    width: 400px;
}

.element
{
    color: white;
    border: none;
    margin: 0;
    padding: 5px 0;
    display: flex;
    position: relative;
}

input[type="number"] {
    font-size: 20px;
    background: #211f2f;
    color: #fff;
    width: 50px;
    padding: 0.3ch 5px;
    max-height: 40px;
    border: 1px solid #666;
}

input[type="color"] {
	-webkit-appearance: none;
	border: none;
	width: 27px;
	height: 27px;
    margin-left: 10px;
}
input[type="color"]::-webkit-color-swatch-wrapper {
	padding: 0;
}
input[type="color"]::-webkit-color-swatch {
	border: none;
}

label {
    display: flex;
    width: 150px;
    font-size: 20px;
    justify-content: space-between;
}

  
/* custom radio button */
.element div {
    position: relative;
}

.checkmark {
    width: 25px;
    height: 25px;
    display: block;
    background-color: #211f2f;
    border: 1px solid #666;
}

input[type="radio"], input[type="checkbox"] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

input[type="radio"]:checked ~ .checkmark, input[type="checkbox"]:checked ~ .checkmark {
    background-color: #08ffbd;
}

input[type="radio"]:checked ~ .checkmark::after, input[type="checkbox"]:checked ~ .checkmark::after {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-weight: 900;
}

.label-extra-info {
    opacity: .5;
    margin: 0 15px;
}

.button_parent
{
    display: flex;
    flex-direction: column;
}

.button {
    background: transparent;
    color: #08ffbd;
    padding: 4px 30px 5px;
    border-radius: 1000px;
    border: 1px solid #08ffbd;
    font-size: 25px;
    margin: 20px 0 0;
    cursor: pointer;
    -webkit-transition: all .35s;
    transition: all .35s;
}

.button:hover, .download:hover {
    background: #08ffbd;
    color: #000;
}

.reset {
    color: #aaa;
    border: 1px solid #aaa;
}

.reset:hover {
    background: #aaa;
    color: #000;
}

.parent {
    display: grid;
    grid-column-gap: 0px;
    grid-row-gap: 0px;

    background-color: black;
}

.parent div {

    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}