:root {
    --bg: #F7F6F3;
    --bg-alt: #ffffff;
    --text: #1d2b28;
    --text-soft: #5f6f6b;
    --accent: #6B8E72;
    --accent-dark: #4F6F5A;
}

* {
    scroll-behavior: smooth;
}

html {
    line-height: 1.7rem;
    justify-items: center;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg);
    font-family: 'inter', sans-serif;

}

span{
    color: var(--accent);
    font-weight: bold;
}

.wrapper {
    width: 1024px;
}

header {
    text-align: center;
    background-color: var(--accent);
    border-radius: 0 20px;
    height: 150px;
}

.bg-h {
    background-image: url(../img/paint-test.png);
    width: 1024px;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    text-transform: uppercase;
    padding: 65px 0;
    color: var(--bg-alt);
    font-weight: bold;
}

.nav {
    float: left;
    width: 220px;
    position: sticky;
    top: 0;
    padding-top: 30px;
}

.nav li {
    list-style: none;
    background-color: var(--bg-alt);
    padding-top: 10px;
    border: 0.5px solid var(--accent-dark);
    opacity: 0.7;
    width: 100%;
}

.nav a {
    text-align: center;
    text-decoration: none;
    color: var(--text);
    font-size: 20px;
    font-family: 'inter', sans-serif;
    cursor: pointer;

}

.nav a:hover {
    color: var(--accent);
}

.content {
    margin-left: 220px;
    width: auto;
    padding: 20px;

}

main {
    min-height: 620px;
    width: 1024px;
}

.content p {
    padding-top: 10px;
}

.content h1 {
    font-size: 100px;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    text-align: left;
}

.content video {
    width: 100%;
    height: auto;
    padding: 20px 0;
}


.box {
    float: inline-start;
    width: 35%;
    height: 250px;
    border: 3px solid var(--accent-dark);
    line-height: 250px;
    margin: 40px 40px;
    border-radius: 30px;
    box-shadow: -10px 10px 10px 5px var(--accent-dark);
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 40px;
}

.box:hover,
.box a:hover {
    background-color: var(--accent-dark);
    color: var(--bg);
    transform: scale(0.9);
}

.box a {
    text-decoration: none;
    color: var(--text);
    line-height: 300px;
    font-size: 20px;

}

.content img {
    width: 100%;
}

.orga:hover {
    transform: scale(1, 2);
}

.jasp {
    width: 50% !important;
    border-radius: 20%;
}

.question {
    font-size: 30px !important;
    font-family: 'Playfair Display', serif;
    color: var(--accent-dark);
    text-align: center;
    padding: 10px 0;
}

.reponse {
    font-size: 18px !important;
    font-family: 'inter', sans-serif;
    color: var(--text);
}

.reponse p {
    margin: 0 0 10px 20px;
}

.Logo {
    width: 50% !important;
}

.footer {
    width: 1024px;
    border-radius: 0 20px;
    height: 150px;
}

.footer2 {
    width: 1024px;
    border-radius: 0 20px;
    height: 150px;
    padding-top: 160px;
}

.footer p, .footer2 p {
    text-align: center;
    padding: 50px;
    line-height: 2rem;
    background-color: var(--accent-dark);
    font-weight: 400;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--bg-alt);
}