/* Open Sans Regular */
@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/OpenSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Open Sans Bold */
@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/OpenSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Open Sans Italic */
@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/OpenSans-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

/* Open Sans SemiBold */
@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/OpenSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* Open Sans Light */
@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/OpenSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}



body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 300;
    background: #0f1113 url('/images/bg-media-dark.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #f9f9f9;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

.header {
    padding: 40px 0 20px;
}

.logo {
    max-width: 440px;
    height: auto;
}

.subtitle {
    position: relative;
    top: -50px;
}

.main-content h1 {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #ffffff;
}

.highlight {
    font-size: 2.2em;
    color: #ff9800;
    margin-top: 10px;
}

.intro-box {
    background: #1a1c1f;
    padding: 30px;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0px 0px 90px rgba(255, 255, 255, 0.64);
}

.intro-box h1 {
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1em;
}

.intro-box h2 {
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1em;
}

.intro-box p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 1em;
}

.slogan {
    font-style: italic;
    font-weight: 300;
    color: #ff9800;
    font-size: 1em;
}

.footer {
    margin-top: auto;
    font-size: 0.9em;
    padding: 20px 0;
    color: #777;
}
