/*$font-family-sans-serif: "Courier Prime", serif;*/

html {
    scroll-padding-top: 125px;
}

body {
    --bs-body-font-size: 10px;
    background: black;
    font-family: "Courier Prime", serif;
}

a {
    all: unset;
}
 a:hover{
     cursor: pointer;
 }

.testing {
    padding-left: 3em;
 }


.subtitle {
    letter-spacing: 0.75em;
}

.etiquette {
    background: black;
    padding: 3px;
}

/*#groupe1 {*/
/*    width: 100%;*/
/*    transition: width 1s;*/
/*    -moz-transition: width 1s;*/
/*    -webkit-transition: width 1s, height 1s;*/
/*    -o-transition: width 1s;*/
/*}*/

/*#groupe2 {*/
/*    width: 100%;*/
/*    transition: width 1s;*/
/*    -moz-transition: width 1s;*/
/*    -webkit-transition: width 1s, height 1s;*/
/*    -o-transition: width 1s;*/
/*}*/

@media (max-width: 1200px) {
    .bigScreen {
        display: none;
    }
}

@media (min-width: 1200px) {
    .smallScreen {
        display: none;
    }
}

@media (min-width: 991px) {
    body {
        --bs-body-font-size: 16px;
    }
}

@media (min-width: 1400px) {
    body {
        --bs-body-font-size: 17px;
    }
}

@font-face {
    font-family: personalLogo;
    src: url("/assets/PeyoteHandwrite.otf");
}

.personal-font {
    font-family: personalLogo, sans-serif;
    font-size: 1.5em;
}

/*$navbar-nav-link-padding-x: null;*/
/*$navbar-brand-font-size: 1.5rem;*/


.navbar-collapse {
    justify-content: center;
}

.card-img {
    height: auto;
    /*background-size: cover;*/
}

.card {
    margin: 2em;
}

footer{
    background: white;
    width: 90%;
    border-radius: 0.6em;
    height: 3em;
}

.scrolled-down {
    transform: translateY(-100vh);
    transition: all 0.5s ease-in-out;
}

.scrolled-up {
    transform: translateY(0);
    transition: all 0.5s ease-in-out;
}