body {
    background-color: black;
}

.title {
    color:white;
    text-align: center;
    text-transform: uppercase;
}

.form {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.5);
    max-width: 600px;
    margin: auto;
}

#certificate-form div {
    display: flex;
    flex-flow: row wrap;
    margin: 1rem 0;
}

#certificate-form div label {
    color: white;
    flex: 200px 0 0;
}

#certificate-form div input {
    flex: 1 0 0;
    padding: 0.5rem;
    border-radius: 5px;
    border: none;
    background-color: white;
    color: black;
}

#certificate-form div input:focus {
    outline: none;
}

#certificate-form #submit-button {
    display: block;
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
    width: 100%;
    background-color: orange;
    border: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.2rem;
    transition: all ease 300ms;
}

#certificate-form #submit-button:hover {
    background-color: darkorange;
}

#certificate-result {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: white;
}

#certificate-result div {
	display: flex;
	flex-flow: row wrap;
	row-gap: 1rem;
	column-gap: 0.5rem;
}

#certificate-result a {
    text-decoration: none;
    margin: auto;
    color: orange
}

#certificate-result p {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}