:root {
    --mtx-blue: #0C5192;
    --mtx-blue-light: #1865B0;
    --mtx-blue-dark: #003B75;
    --mtx-orange: #FF870F;
    --mtx-orange-light: #FF971E;
    --mtx-orange-dark: #FF7100;
}

.bg-mtx {
    background: linear-gradient(to right, var(--mtx-blue-light), var(--mtx-blue-dark));
}

.text-mtx {
    font-family: 'Open Sans', sans-serif;
    color: var(--mtx-blue);
}


button {
    background: linear-gradient(to right, var(--mtx-blue-light), var(--mtx-blue-dark));
    cursor: pointer;
    transition: background 5s ease;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}

button:hover {
    background: linear-gradient(to right, var(--mtx-orange-light), var(--mtx-orange-dark));
}

.border-mtx {
    border-color: var(--mtx-blue);
}

h2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: var(--mtx-blue);
    text-transform: uppercase;
}

p {
    font-family: 'Open Sans', sans-serif;
}

input:focus {
    outline: 2px solid var(--mtx-orange);
}

.aspect-ratio-container {
    position: relative;
    width: 100%;
    padding-top: 75%;
    /* 4:3 aspect ratio */
}

.aspect-ratio-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#cats {
    width: 100%;
}

.responsive-video {
    width: 100%;
    /* Fill the width of the container */
    height: auto;
    /* Auto height to maintain aspect ratio */
    aspect-ratio: 16 / 9;
    /* Maintain 16:9 ratio */
    display: block;
    /* Removes inline spacing */
}