body, html {
    font-family: monospace;
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-size: 18px!important;
}

.menu {
    display: flex;
    justify-content: space-evenly;
}

.carousel {
    overflow-x: scroll;
    overflow-y: hidden;
    height: 100%;
    display: flex;
    flex-direction: row;
}

.carousel::-webkit-scrollbar {
    width: 14px;
}

.carousel::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px 0 #f0F0F0;
    border-radius: 10px;
}


.carousel::-webkit-scrollbar-thumb {
    background: #ef890a;
    border-radius: 10px;
}

.project {
    min-width: 350px;
    max-width: 350px;
}

.text {
    background-color: #000000F2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 0%;
    transition: height 1s;
    text-align: center;
}

button {
    height: 60px;
    width: 50%;
    font-family: kiwi_maru;
    color: #060327;
    border: 1px dotted black;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5%;
    transition: opacity 1s;
}

.image {
    height: 100%;
    position: relative;
    background-size: contain!important;
}

.image:hover .text{
    height: 100%;
}

.image:hover .text h2 a{
    border-bottom: 1px solid white;
}

.image:hover .button{
    opacity: 0;
}

a{
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.odd{
    background-color: #35385b;
    padding: 10px;
}

.even{
    background-color: #222554;
    padding: 10px;
}

.centering{
    margin-top: 10px;
    text-align: center;
    font-size: 0.8em;
}

/* For a project page */
.all_project{
    margin-left: 2%;
}

.arrow_right{
    margin-left: 20px;
    height: 10%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.logo_landscape{
    width: 250px;
}

.images{
    overflow-x: scroll;
    display: flex;
    flex-direction: row;
    margin-top: 10px;
}

.images::-webkit-scrollbar {
    width: 14px;
}

.images::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px 0 #f0F0F0;
    border-radius: 10px;
}

.images::-webkit-scrollbar-thumb {
    background: #ef890a;
    border-radius: 10px;
}

.project_image_profile{
    height: 800px;
    width: 400px;
    margin-left: 10px;
}

.project_image_landscape{
    width: 800px;
    height: 400px;
    margin-left: 10px;
}

.project_image_square{
    width: 600px;
    height: 600px;
    margin-left: 10px;
}

.infos {
    font-size: 1.2em;
}

.contributions span{
    background-color: #c9c9c9;
}

.contributions{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    grid-auto-rows: minmax(30px, auto);
    width:90%;
    margin: 0 auto;
}

.contributions_splashy{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    grid-auto-rows: minmax(30px, auto);
    width:90%;
    margin: 0 auto;
}

.line{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 90%;
}

@media screen and (max-width: 1200px){
    .infos{
        font-size: 2em;
    }
    .contributions{
        grid-template-columns: repeat(2, 1fr);
    }
    /*h2{*/
    /*    font-size: 2.5em;*/
    /*}*/
    .centering{
        font-size: 2em;
    }
}