diff --git a/content/_index.md b/content/_index.md
index ed29805..e96efaf 100644
--- a/content/_index.md
+++ b/content/_index.md
@@ -8,17 +8,17 @@ Teens For Christ Connection (TFC) is a rural ministry reaching out to the missio
-{{< typeit tag=h2 lifeLike=true >}}
+{% typeit(tag="h2" lifeLike="true") %}
Camp registration is now open!!
-{{< /typeit >}}
+{% end %}
-{{< button href="/camp-form" >}}
+{% button(href="/camp-form") %}
Fill out now!
-{{< /button >}}
+{% end %}
@@ -28,6 +28,7 @@ Fill out now!
> If you need to pay for your camp form, pay for registration ($85) [here](https://secure.myvanco.com/L-Z772/campaign/C-13JPJ) or pay for the full price ($185) [here](https://secure.myvanco.com/L-Z772/campaign/C-13JQE).
+{{ spacing(height="h-8") }}
{{ pt(src="https://videos.tfcconnection.org/videos/embed/0e6378c4-bb58-4fb1-8edf-72b73efc5ad2") }}
diff --git a/static/css/main.css b/static/css/main.css
index 5505413..765d864 100644
--- a/static/css/main.css
+++ b/static/css/main.css
@@ -312,15 +312,6 @@
.mx-8 {
margin-inline: calc(var(--spacing) * 8);
}
- .mx-10 {
- margin-inline: calc(var(--spacing) * 10);
- }
- .mx-16 {
- margin-inline: calc(var(--spacing) * 16);
- }
- .mx-24 {
- margin-inline: calc(var(--spacing) * 24);
- }
.mx-auto {
margin-inline: auto;
}
@@ -472,9 +463,6 @@
.h-64 {
height: calc(var(--spacing) * 64);
}
- .h-80 {
- height: calc(var(--spacing) * 80);
- }
.h-full {
height: 100%;
}
@@ -526,9 +514,6 @@
.w-64 {
width: calc(var(--spacing) * 64);
}
- .w-80 {
- width: calc(var(--spacing) * 80);
- }
.w-auto {
width: auto;
}
@@ -697,6 +682,9 @@
.\!rounded-lg {
border-radius: var(--radius-lg) !important;
}
+ .\!rounded-md {
+ border-radius: var(--radius-md) !important;
+ }
.rounded-full {
border-radius: calc(infinity * 1px);
}
diff --git a/templates/layout.html b/templates/layout.html
index 97b642a..a24aaa3 100644
--- a/templates/layout.html
+++ b/templates/layout.html
@@ -321,5 +321,6 @@
{% endif %}
{% block extra_js %}
{% endblock extra_js %}
+