body {
    margin: 0px;
    background: #fff url(/img/firefox/bg.png) 50% 0 repeat-x;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0px;
}

a {
    text-decoration: none;

    &:visited {
        color: inherit
    }
}

#wrapper {
    width: 1206px;
    margin: auto
}

/* Navbar */
#nav {
    display: flex;
    flex-direction: row;
    margin: 18px;
    border-radius: 6px;
    padding: 5px 20px;
    color: white;
    background: #33589f;
    background: linear-gradient(360deg, rgb(42,65,135), rgb(59,105,177));
    box-shadow: 0 3px rgba(0,0,0,0.1), inset 0 -4px rgba(0,0,0,0.1);
}

#nav #logo {
    flex-grow: 1;
}

#nav #links {
    font-family: "Trebuchet MS", sans-serif;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    align-items: center;
}

#nav #links > * {
    padding: 0px 20px;
    height: 100%;
    display: flex;
    align-items: center;
    border-left: 1px solid rgb(83,115,176);
    border-right: 1px solid rgb(47,80,140);
}

#hero {
    display: flex;
    justify-content: center;
    font-family: georgia,serif;
    padding-top: 12px
}

#hero #text {
    padding: 40px 0px 0px 20px;
    background: url(/img/firefox/herobg.jpg) 0 100% no-repeat;
}

#hero #text h1 {
    font-size: 3.5rem;
    font-weight: normal;
}

#hero #text p {
    font-size: 1.5rem;
    font-weight: normal;
}

#hero #text ul {
    color: #6d7581;
    font-style: italic;
    font-size: 1.2rem;
}

#hero #text .btn {
    color: white;
    display: flex;
    width: 70%;
}

#hero #text .btn img {
    padding: 0px;
    margin: 0px;
    margin-left: -50px;
}

#hero #text .btn h2 {
    letter-spacing: -0.02em;
    font-weight: normal;
    font-size: 1.7rem;
}

#features > * {
    background: url(/img/firefox/side.png) 100% 50% no-repeat;
    padding: 20px 15px 20px 30px;
    font-size: 16px;
    max-width: 250px;
}

#features h3 {
    font-size: 30px;
    font-weight: normal;
    line-height: 2rem;
}

#features p {
    margin-top: 5px;
    color: #6d7581;
}

#features .lien {
    margin: 10px 0px;
}

#features {
    display: flex;
    margin-top: 20px;
}

#footer {
    padding: 50px;
}

/* Bouttons */
.btn {
    border-radius: 6px;
    font-family: georgia,serif;
    transition: all 0.2s ease-in-out;
}

.btn-dl {
    background: #33589f;
    background: linear-gradient(#84C63C, #489615);
    box-shadow: 0 3px rgba(0,0,0,0.1), inset 0 -4px rgba(0,0,0,0.1);
}

.btn-dl:hover {
    background: linear-gradient(#83c63cc7, #499615c5);
}

/* Texte */
.text-secondary {
    color: #6D7581;
}

.text-center {
    text-align: center
}

/* Liens */
a.link {
    color: #447bc4;

    &:hover {
        border-bottom: solid 1px #447bc4;
    }
}

/* Wrappers */
.flex-center-wrapper {
    display: flex;
    justify-content: center;
}

/* triska.xyz */