html {
    height: 100%;
    justify-content: center;
    display: flex;
}
body {
    font-family: "Lunasima", sans-serif;
    margin: 0;
    text-align: center;
    padding: 40px 20px 40px 20px;
    justify-content: center;
    display: flex;
}
  
h1 {
    margin-bottom: 0;
}

h2 {
    margin-top: 0;
    margin-bottom: 50px;
    font-size: 1rem;
    opacity: 50%;
}

h2 span {
    text-decoration: underline;
}

.post-frame {
    background-color: black;
    margin: 0 auto;
}

.post-frame h1 {
    color: white;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin: auto;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 700;
}

label {
    margin-bottom: 10px;
}

input {
    background-color: rgb(224, 224, 224);
    border-style: none;
    border-radius: 10px;
    height: 40px;
    width: 80vw;
    margin-bottom: 20px;
    font-family: "Lunasima", sans-serif;
    text-align: center;
    max-width: 400px;
}

#submit {
    background-color: black;
    color: white;
    font-weight: 700;
    font-family: "Lunasima", sans-serif;
}

#submit:hover {
    cursor: grab;
}

img {
    width: 200px;
    height: 100px;
    object-fit: cover;
}

#error-message {
    color: red;
    font-size: 0.9em;
    display: none;
    margin-top: 0;
}