#content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 25%;
    left: 50%;
    transform: translate(-50%);
    margin-top: 200px;
    margin-bottom: 100px;
    color: white;
}

form {
    display: flex;
    flex-direction: column;
    height: min-content;
    padding: 30px;
    border-radius: 10px;
    background-color: rgba(31, 48, 94, 0.8);
}

#i-header {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}

#i-text {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
}

input[type="text"], textarea {
    padding: 5px;
    margin: 15px 0px;
    color: black;
    resize: vertical;
    border: none;
    outline: none;
    border-radius: 5px;
}

textarea {
    min-height: 75px;
    height: 75px;
    max-height: 150px;
}

input[type="submit"] {
    color: black;
    border-radius: 5px;
    padding: 5px;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 18px;
    transition: border-radius 300ms,
                color 300ms,
                background-color 300ms;
}

input[type="submit"]:hover {
    background-color: rgb(21, 148, 42);
    color: white;
    border-radius: 50px;
}