* {
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Lato', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
#main-content {
    display: flex;
    flex-direction: row;
}
#left {
    display: flex;
    flex-direction: column;
    background-color: white;
    height: 100vh;
    width: 50vw;
    align-items: center;
    justify-content: center;
}
#right  {
    display: flex;
    flex-direction: column;
    background-color: #E7F2FC;
    height: 100vh;
    width: 50vw;
    align-items: center;
    justify-content: center;
}

#blah {
    opacity: 0;
    object-fit: contain;
    padding: 10px;
}
#bg {
    opacity: 0;
    padding: 10px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: 20px;
}
#logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.logo {
    width: 300px
}
#intro {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#love {
    margin-top: 10px;
    display: flex;
}
#love span {
    margin: 0 10px;
}
p.last {
    
    font-style: italic;
}
.label {
    color: #597495;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 10px;
}
#textfields {
    margin-bottom: 30px;
}
#textfield {
    padding: 10px;
}
#inputfields {
    display: flex;
    flex-direction: column;
    width: 200px;
}
.color-input {
    margin-bottom: 20px;
}
.show {
    opacity: 1 !important;
}
#finalimage {
    width: 252px;
    height: 215px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 10px;
    /*-webkit-box-shadow: 0px 3px 10px 0px rgba(0,0,0,0.15); 
    box-shadow: 0px 3px 10px 0px rgba(0,0,0,0.15);*/
}
#text {
    background-color: rgb(7, 81, 179);
    text-align: center;
    padding: 20px;
    width: 212px;
    word-wrap: break-word;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: white;
}

#finalrender {
    border-radius: 10px;
    background-color: white;
    overflow: hidden;
    -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
}
#download {
    background-color: #50A3E0;
    padding: 15px 20px;
    display: inline-block;
    cursor: pointer;
    color: white;
    margin-top: 20px;
}

.inputfile {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

.inputfile + label {
    font-size: 14px;
    font-weight: 600;
    color: rgb(80,163,224);
    display: inline-block;
    cursor: pointer;
    padding: 10px;
    transition: .15s;
    letter-spacing: .3px;
    border: 2px solid rgb(80,163,224);
    border-radius: 5px;
    margin: 20px 0;
}

.inputfile:focus + label,
.inputfile + label:hover {
    opacity: .7;
}