@import url('fontawesome-all.min.css');
@import url('https://fonts.cdnfonts.com/css/geo-sans-light');

/* ============================================
   GENERAL
   ============================================ */

:root {
    --accent: #00d9ff;
    --accent-warm: #667eea;
    --bleu-comete: #4B5FA8;
    --bleu-profond: #2D3E7D;
    --bleu-ciel: #6BA5D6; 
    --off-white: #f5f5f5;
    --white-rgb: 255, 255, 255;
    --gray: #a0a0a0;
    --dark: #0a0a0a;
    --dark-surface: #121212;
    --border: rgba(var(--white-rgb), 0.1);
    --overlay-delay: 1.7s;
    --overlay-dur: 0.7s;
}

body {
  background-color: rgb(10, 15, 30);
}

body,
button,
input,
textarea,
h1,
h2 {
        font-family: 'GeosansLight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html, body, div, span, h1, h2, p,
a, img, ul, li, form, label, footer, 
header, nav, section {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;}

/* section */
section, footer {
    padding: 4rem 5%;
    position: static;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-title > h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}
.section-title > p {
    font-size: 1.1rem;
    color: var(--gray);
}

.button {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

ul {
    list-style: none;
}


/* Hide preload animations */
.is-preload * {
    animation: none;
    transition: none;
}
