* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
    margin: 0px;
    padding: 0px;
    height: 100%;
    width: 100%;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
}

.footer {
  padding: 50px;
  width: 100%;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-style: none;

}

.footer a {
    color: #000;
}

.outer-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    height: 100%;
    width: 100%;
}

.outer-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    height: 100%;
    width: 100%;
    background-image: url('/images/home/home_background.jpg'); /* Replace 'your-image.jpg' with the actual image URL */
    background-size: cover;
    background-position: center;
}

.inner-container {
    padding: clamp(0px, 1%, 20px);
    margin-left: clamp(0px, 5%, 200px);
    border-radius: 8px;
    text-align: left;
    width: 100%;
    max-width: clamp(325px, 50%, 600px);
}

.text-div-1 {
    margin: 0px 0;
    padding: 0px;
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
}

.text-div-2 {
    margin: 0px 0;
    padding: 0px;
    font-size: 72px;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
}

.text-div-rotator {
    margin: 0px 0;
    padding: 5px;
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
    height: 64px;
}

.text-div-animated {
    margin: 0px 0;
    padding: 0px;
    font-size: 72px;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    background-image: url('images/home/text_background.webp'); /* Replace with your GIF path */
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent
}

.button-div {
    margin: 0px 0;
    margin-top: 10px;
    padding: 0px;
    font-size: 24px;
    font-family: "Open Sans", sans-serif;
}

h1 {
    display: inline;
    margin: 0px 0;
    padding: 0px;
    font-size: 18px;
    font-family: "Lobster", sans-serif;
    font-weight: 200;
}

button {
  width: clamp(100px, 20vw, 176px);
  height: 32px;
  border-radius: 300px;
  background-color: #000;
  color: white;
  border: none;
  cursor: pointer;

  text-align: center;
  font-family: "Open Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

button:hover {
  background-color: var(--futurity-blue-1);
}

.text-div:last-child {
    border-bottom: none;
}

.action-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.action-button:hover {
    background-color: #0056b3;
}