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

html {
    scroll-behavior: smooth; 
}

body {
    font-family: 'Univers LT Std 47 Light Condensed';
    font-size: 1.25rem; 
    line-height: 1.7; 
    color: #333333; 
    background-color: #FFFFFF; 
    font-weight: 300; 
}

header,
header div {
    background-color: #1A1A1A;
}

header {
    position: sticky;
    top: 0;
}

header div {
    color: #F0F0F0; 
    position: sticky; 
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 14vh;
    width: 60vw;
    margin: 0 auto;
}

h1 {
    font-family: 'Univers LT Std 67 Bold Condensed';
    font-size: 2.5rem; 
}

nav ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    gap: 25px;
}

nav a {
    color: #D0D0D0;
    text-decoration: none;
    font-family: 'Univers LT Std 57 Condensed';
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 2px solid transparent;
}

nav a:hover,
nav a:focus {
    color: #FFFFFF; 
    border-bottom: 2px solid #880000; 
}

section {
    min-height: 100vh;
    display: flex;
    padding: 75px 0;
}

#sec1 {
    min-height: 86vh;
    background-image: url("frutiger.jpg");
    background-size: cover;
}

#sec2,
#sec3,
#sec4 {
    padding: calc(14vh + 75px) 0 75px 0;
}

section:nth-child(even) {
    background-color: #F8F8F8; 
}

.content-wrapper {
    max-width: 60vw; 
    margin: 0 auto;
    /* width: 100%; */
    text-align: justify; 
}

h2 {
    font-family: 'Univers LT Std 65 Bold';
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1A1A1A; 
    border-bottom: 3px solid #880000; 
    padding-bottom: 0.5rem;
    display: inline-block; 
    width: 100%;
}

p {
    margin-bottom: 1.5rem; 
    text-align: justify; 
    letter-spacing: 0.5px;
    color: #000000;
}

.text {
    column-count: 2;
    column-gap: 80px;
}

img {
    max-width: 60vw;
    padding-bottom: 25px;
}

footer p {
    font-family: 'Univers LT Std 57 Condensed';
    text-transform: uppercase;
    padding: 3px 0 0;
    margin: 0;
    text-align: center;
    font-size: 1rem;
    background: #880000;
    color: #FFFFFF;
}