I have tried this:
.sign-out {
height: 21px;
width: 168px;
color: #0854B3;
font-family: Averta, serif;
font-size: 14px;
line-height: 21px;
text-align: center;
padding-top: 17px;
margin-left: 291px;
}
<html>
...
<form method="post" action="{% url logout %}">
{% csrf_token %}
<div class="sign-out" type="submit">sign out</div>
</form>
<html>
However the sign out text isn't clickable -- how do I make it so?