html {
	background: black;
	min-height: 100%;
	margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
	text-align: center;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
	text-align: center;
    margin: 40px 40px;
    max-width: 800px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
	text-align: center;
    gap: 2vh;
}

form input, form textarea {
    outline: none;
    border: 0;
    padding: 10px;
    width: 100%;
}

form textarea {
    width: 100%;
    font-family: sans-serif;
}

form input::placeholder, form textarea::placeholder {
    color: black;
    font-family: sans-serif;
}

button {
    border: 0;
    padding: 10px 20px;
    background-color: #AE9671;
    color: white;
    font-family: sans-serif;
    cursor: pointer;
}

#logo {
    width: 20vw;
    margin-bottom: 10vh;
}

img {
    width: 80%;
}

p {
    color: white;
    font-family: sans-serif;
    font-size: 24px;
}

iframe {
    display: none;
    position: absolute;
}

@media (max-width: 768px) {
  #logo {
    width: 40vw;
  }
}
