html{
    scroll-behavior: smooth;
    cursor: url('assets/cursorblack.png'), auto;
    font-family: 'Agon', 'Courier New', Courier, monospace;
}

body {
    background: #000000;
    background: url(assets/ptetefondsite.jpg) no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
    margin: 0%;
    padding: 0%;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

@font-face {
    font-family: Insolente;
    src: url(assets/Insolente-Regular.woff) format("woff");
}

@font-face {
    font-family: KobataBold;
    src: url(assets/Kobata-Bold.woff2) format("woff2");
}

@font-face {
    font-family: KobataRegular;
    src: url(assets/Kobata-Regular.woff2) format("woff2");
}

@font-face {
    font-family: Agon;
    src: url(assets/P-ACR-AGON-Regular.otf) format("otf");
}

h1{
font-size: 1vw;


}

h3{
font-size: 3vw;
text-align: center;

}

header {
    display: flex;
    justify-content: flex-end;
    align-items: center;

    position: fixed;
    top: 0%;

    height: 3.9vw;
    width: 100%;

    z-index: 1;

    background-color: #000000;
    color: #000000;
    font-size: 1.6vw;

    margin: 0%;
    padding: 0%;
}

#scroll-container {
    background-color: #beff00;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    padding: 1%;
}

.scroll-track {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.scroll-title {
    padding-left: 2vw;
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

#logo {
    display: flex;
    align-items: center;
    gap: 0.5vw;
    padding-left: 1.5vw;
    padding-right: 1vw;
    height: 100%;
}

img{
    max-width: 260px; /* taille max */
  width: 50%;
  height: auto;

}

#grospoint {
    height: 2vw;
    width: 2vw;

    border-style: solid;
    border-color: #beff00;
    border-radius: 50%;
    background-color: #beff00;
}

#grospoint:hover {
    background-color: transparent;
}

#bars {
    font-family: 'Courier New', Courier, monospace;
    color: #beff00;
    font-size: 1em;
}

.layout {
    display: grid;
    grid-template-columns: 4vw 1fr 4vw;
    /* gauche | centre | droite */
    min-height: 100vh;
}

.nav-left,
.nav-right {
    position: sticky;
    top: 3.9vw;
    height: calc(100vh - 3.9vw);
    background-color: #000000;
    color: #beff00;

    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-around;
}

.nav-left {
    grid-column: 1;
    writing-mode: sideways-lr;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.nav-right {
    grid-column: 3;
    writing-mode: vertical-rl;
    flex-direction: row;
    justify-content: space-around;
}

a {
    text-decoration: none;
    color: #beff00;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6vw;
}

a:hover {
    background-color: #beff00;
    color: #000000;
    cursor: url('assets/cursorblack.png'), auto;
}

h2{
    font-size: 2,5vw;
}

main{
    scroll-behavior: smooth;
}

.content {
    grid-column: 2;
    margin: 7vw;
    padding: 0px 4vw 4vw 4vw;
    background-color: #000000;
    color: #beff00;
    cursor: url('assets/cursorgreen.png'), auto;
}

section{
    padding-top: 3.9vw;
}