﻿
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
}

body::before,
body::before {
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 10px;
    background: linear-gradient(to bottom, rgba(255, 140, 0, 0.8), rgba(255, 165, 0, 0.8), rgba(255, 140, 0, 0.8) );
    z-index: 1000;
}

.title_image_container {
    position: relative;
    top: 0;
    left: 0;
    width: 100vw;
    height: var(--image-height);
    z-index: -1;
    display: block;
}

.title_image {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    object-fit: cover;
}


.gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( to bottom, transparent 80%, #313335 90% );
}

.gradient-title {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.content-section {
    position: relative;
    width: 100%;
    min-height: 100%;
    background: #313335;
    z-index: 2;
}


