button.styled_button {
    min-width: 200px;
    padding: 10px 25px;
    background-color: #011410;
    border-radius: 15px;
    border-color: #05382a;
    border-style: solid;
    color: white;
    transition: background-color 0.1s;
}

button.styled_button:hover {
    background-color: #033A2E;
}