body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto Mono', monospace;
    height: 100vh;
    min-width: 520px;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: hidden;
    position: relative;
}

main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    overflow-x: hidden;
}

#header {
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 1em;
}

#content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1em;
    box-sizing: border-box;
}

#pitch {
    width: 50em;
    text-align: center;
}

#pitch h2 {
    color: #fff;
}

#contact-us, #thanks {
    width: 30em;
    padding: 2rem 2rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

#contact-us form {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
}

#contact-us input,
#contact-us textarea,
#contact-us label {
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    max-width: 400px;
    color: inherit;
    background-color: #78717167;
    font-family: inherit;
}

#contact-us input::placeholder,
#contact-us textarea::placeholder {
    color: white;
}

button {
    background: #414244;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: inherit;
    margin-top: 10px;
}

button:hover {
    background: #65676a;
    color: #fff;
}

#transformer-skill {
    margin-top: 1em;
    font-size: 1.2em;
    color:rgba(255, 255, 255, 0.8);
    text-shadow: 0px 0px 2px rgba(255, 255, 255, 0.7);
    text-align: center;
}

#footer {
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 1em;
    position: relative;
}

.hidden {
    display: none;
}
