button {
    width: 300px;
    height: 40px;
    display: block;
    padding: 5px 15px;
    color: #FFFFFF;
    background: #1f6129;
    border: none;
    cursor: pointer;
    transition: .2s background;
}
button:hover {
    background: #0b0b0b;
}
input {
    display: block;
    width: 300px;
    height: 40px;
    padding: 0 15px;
    margin-bottom: 10px;
    background: #ebebeb;
    border: 1px solid #000000;
}
textarea {
    width: 300px;
    height: 100px;
    padding: 15px;
    resize: none;
    display: block;
    margin-bottom: 10px;
    background: #ebebeb;
    border: 1px solid #000000;
}
.title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}
a {
    color: blue;
}
.item {
    width: 300px;
    padding: 15px;
    background: #dedede;
    border-radius: 10px;
    border: 1px solid #000;
    margin-bottom: 20px;
}
.name {
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    color: #1f6129;
    margin-bottom: 10px;
}
.txt {
    margin-bottom: 10px;
}
.subtxt {
    font-size: 12px;
    color: #4e4e4e;
    text-align: right;
    margin-bottom: 10px;
}
