html {
    --background-color-light: #eeefea;
    --background-color-dark: #162D3B;
    --header-color-on-dark: #FEFEFE;
    --header-color-on-light: #000000CC;
    --paragraph-color-on-light: #3D3D3D;
    --header-font-family: 'Rajdhani', sans-serif;
    --paragraph-font-family: 'Barlow', sans-serif;
    --header-font-weight: 600;
    --paragraph-font-weight: 400;
    --side-spacing: 2.3dvw;

    background-color: var(--background-color-light);
}

h1 {
    font-size: 3rem;
    font-family: var(--header-font-family);
    font-weight: var(--header-font-weight);
    text-transform: uppercase;
}

h2 {
    font-size: 2.5rem;
    font-family: var(--header-font-family);
    font-weight: var(--header-font-weight);
    margin-bottom: 0.2em;
    color: var(--header-color-on-light);
    text-transform: uppercase;
}

h3 {
    font-size: 1.875rem;
    font-family: var(--header-font-family);
    font-weight: var(--header-font-weight);
    color: var(--header-color-on-light);
    text-transform: uppercase;
}

p {
    font-size: 1.125rem;
    color: var(--header-color-on-light);
    font-family: var(--paragraph-font-family);
    font-weight: var(--paragraph-font-weight);
}

header {
    padding: 2dvh 0;
    background-color: var(--background-color-light);
}

#skyincap-logo {
    width: auto;
    max-height: 4.5rem;
    margin: auto;
}

#sub-header {
    position: relative;
    height: 605px;
    background-color: var(--background-color-dark);
}

#sub-header h1 {
    position: absolute;
    max-width: calc(100vw - var(--side-spacing));
    top: 15%;
	left: 50%;
	transform: translateX(-50%);
    width: 100%;
    text-align: center;
    z-index: 3;
    color: var(--header-color-on-dark);
}

#left-star {
    position: absolute;
    top: 64%;
    left: 10%;
    width: 48px;
    height: auto;
    z-index: 1;
}

#right-star {
    position: absolute;
    top: 14%;
    right: 5%;
    width: 40px;
    height: auto;
    z-index: 1;
}

#loading-video {
    position: absolute;
    bottom: -25%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    max-width: 90dvw;
    height: auto;
    object-fit: cover;
    z-index: 2;
}

main {
    padding: 220px var(--side-spacing) 60px var(--side-spacing);
}

#contact-section-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sub-section-header {
    display: flex;
    gap: 10px;
    align-items: baseline;
}

.sub-section-header img {
    height: auto;
    width: 24px;
    color: var(--header-color-on-light);
}

#contact-section {
    margin-top: 60px;
}
