Changing Button Position on Video Background

Hi,

I’m trying to move a button on a video background. It is currently centered, but I would like to lower it to the bottom of the video.

Here is the link to the code for the video background:

https://github.com/mrdexters1/videoBackground.liquid/blob/main/videoBackground.liquid

Does anyone know the specific code to use to modify the button position? Thank you!

use the updated code as i wrote below

{%- if section.blocks.size > 0 -%}
	{%- for block in section.blocks -%}
		{%- assign img_url = block.settings.image | img_url: '1x1' | replace: '_1x1.', '_{width}x.' -%}

		{% if block.type == 'video' %}
			

				{%- if block.settings.video_link != blank -%}
					

						
					

				{% endif %}

				

				
					{% if block.settings.title != blank %}
						# 
							{{ block.settings.title | escape }}
						
					{% endif %}

					{%- style -%}
						.videoBackground .imageBoxInfoDescription p {
							color: {{ block.settings.color_text }}!important;
						}
					{%- endstyle -%}

					{% if block.settings.text != blank %}
						
							{{ block.settings.text }}
						

					{% endif %}

					{% if block.settings.button_link != blank and block.settings.button_label != blank %}
						
							{{ block.settings.button_label | escape }}
						
					{% endif %}
				

			

			{% else %}
				

					

					
						{% if block.settings.title != blank %}
							# 
								{{ block.settings.title | escape }}
							
						{% endif %}

						{%- style -%}
							.videoBackground .imageBoxInfoDescription p {
								color: {{ block.settings.color_text }}!important;
							}
						{%- endstyle -%}

						{% if block.settings.text != blank %}
							
								{{ block.settings.text }}
							

						{% endif %}

						{% if block.settings.button_link != blank and block.settings.button_label != blank %}
							
								{{ block.settings.button_label | escape }}
							
						{% endif %}
					

				

		{% endif %}
	{%- endfor -%}

{% else %}
	 
      	This section doesn’t currently include any content. Add content to this section using the sidebar.
    

{%- endif -%}

Thank you so much!