
body {
    margin: 0;
    background-color: #000000;
    height: 100vh;
    width: 100%;
    padding: 40px 60px 20px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}
#header{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 1;
    
}

.crossed{
    text-decoration: line-through!important;
    color: var(--main-blue)!important;
}
.crossed:hover{
    color: var(--main-white)!important;
}

#menu a:hover{
    color: var(--main-white);
}

#logo h1{
    color: var(--main-white);
    margin: 0.5em 0;
    line-height: auto;
    font-family: Mori;
    font-weight: 400;
    font-size: 1.5em;
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.225);
}
#content{
    height: 100%;
}
#footer{
    z-index: 1;
    width: 100%;
    text-align: right;
    color: var(--main-white);
    font-size: 12px;
}
#video {
    position: fixed;
    left: 0;
    top: 0;
    min-width: 100vw;
    height: 100vh;
    z-index: 0;
  }

#video video{
    height: 100vh;
    width: 100vw;
    object-fit: cover;
}

.section{
    z-index: 0;
    position: absolute;
    margin-top: 100vh;
    width: 100%;
    left: 0px;
    top: 0px;
    padding: 0px 60px;
    display: block;
    transition: all 0.4s ease-out;
    align-items: center;
}
/* SHOP */


/*DISPLAY*/
.displayed{
    display: block;
    height: 87.7vh;
    overflow: scroll;
    margin-top: 16.5vh;
    padding-bottom: 8em;
    transition: all 1.1s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

/*LOGO*/
.smaller h1{
    opacity: 0!important;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.smaller svg{
    transform: scale(0.7);
    transform-origin: left;
    transition: all 1.1s cubic-bezier(0.175, 0.885, 0.32, 1.225);
}

/* TABLE */

.table{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.card{
    height: 416px;
    min-width: 280px;
    width: 25%;
    color: white;
    border: rgb(251, 9, 9) solid 1px;
    padding: 20px;
    background-color: rgba(5,5,5,0.2);
    -webkit-backdrop-filter: blur(164px);
    backdrop-filter: blur(164px);
    cursor: pointer;
    position: relative;
}
.card:hover{
    background-color: rgb(191,211,242,0.6);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}
.card:hover>.description{
    display: block;
    transition: all 0.5s linear;
}
.card:hover>.tag{
    background-color: var(--main-blue);
    color: #181818;
    border: var(--main-blue) 1px solid;
}
.card:hover>.vitrine{
    display: block;
}
.tag{
    border: var(--main-white) 1px solid;
    border-radius: 100px;
    width: fit-content;
}
.tag p{
    width: fit-content;
    margin: 4px 20px 2px 20px;
}
.card h2{
    font-weight: 200;
    font-size: 2.5em;
    margin-top: 2.5em;
}
.card p {
    font-size: 1.1em;
    line-height: 130%;
}
.arrow{
    font-size: 2em;
    margin: 0;
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap:8px
}
.arrow p {
    font-size: 0.9em;
}
.description{
    display: none;
    margin-top: 1em;
}
.aboutme{
    width: 100%;
    color: white;
    border: rgb(251, 9, 9) solid 1px;
    padding: 20px 40px;
    background-color: rgba(5,5,5,0.3);
    -webkit-backdrop-filter: blur(164px);
    backdrop-filter: blur(164px);
}
.aboutme p{
    line-height: 150%;
    margin-bottom: 0.5em;
}
.aboutme a{
    color: var(--main-red);
}
.aboutme .date{
    font-size: 1em;
    font-weight: 300;
    margin-bottom: 1.5em;
}
.aboutme .copo{
    font-weight: 500;
    font-size: 1em;
}

.vitrine{
    display: none;
    object-fit: cover;
    object-position: center;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -122;
    top: 0px;
    left: 0px;
    filter: brightness(0.5) blur(0px);
    overflow: hidden;
}
.vitrine img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
#timeline{
    flex-direction: row;
}

@media only screen and (max-width: 1204px) {
    .card{
        width: 50%;
    }

}
@media only screen and (max-width: 700px) {
    #timeline{
        flex-direction: column;
    }
    .aboutme{
        width: 100%;
    }
    .section{
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 300px;
    }
    .displayed{
        margin-top: 115px;
    }
    body{
        padding: 20px 20px 20px 20px;
    }
    .card{
        width: 100%;
    }
    .vitrine{
        display: block;
    }
}

