h1 {
    display: flex;
    font-family: 'Anton', sans-serif;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 2px;
    position: relative;
    justify-content: center;
    font-weight: bold;
    margin: 30px ;
}

.form-container {
    width: 30%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

form {
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

form input {
    width: 100%;
    height: 50px;
    border: none;
    border-bottom: 1px solid #000;
    outline: none;
    margin-bottom: 10px;
    font-size: 20px;
    color: #000;
    background: none;
    text-align: center;
    padding: 0 10px;
}

form textarea {
    width: 100%;
    height: 100px;
    font-size: 20px;
    color: #000;
    text-align: center;
    padding: 0 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 5px;
}

form input[type="submit"] {
    width: 100%;
    height: 50px;
    border: 2px solid white;
    border-radius: 5px;
    outline: none;
    font-size: 20px;
    color: #fff;
    background: #313624;
    text-align: center;
    margin: 20px auto;
    cursor: pointer;
}

form input[type="submit"]:hover {
    color: #0a0a0a;
    border: 2px solid #000;
    transition: 0.5s;
}

@media  (max-width: 500px) {
    h1 {
        font-size: 30px;
        margin: 20px ;
        text-align: center;
}

.form-container {
    width: 50%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

form {
    margin: 0;
}
}