h1 {
    color: var(--color);
    font-size: 14px;
    text-align: center;
}

h2 {
    font-size: 14px;
    font-weight: bold;
    color: black;
}

h3 {
    color: var(--color);
    margin: 0;
    font-size: 48px;
    line-height: 1;
    text-align: center;
}

p {
    color: black;
}

h1 a {
    color: var(--color);
    text-decoration: none;
}

h1 a:hover {
    color: var(--color);
    border-bottom: 3px solid var(--color);
}

h3 a {
    color: var(--color);
    text-decoration: none;
}

.without-margin-bottom {
    margin-bottom: 0;
}

.without-margin-bottom + div > p:first-child {
    margin-top: 0;
}

img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

button {
    color: var(--color);
    border: 2pt solid var(--color);
    background-color:transparent;
    border-radius: 45px;
    font-weight: bold;
}

.home-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--gutter);
}

#home1 {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

#home2 {
    position: fixed;
    left: 50%;
    top: 20px;
    width: 100%;
    max-width: var(--max-width);
    transform: translateX(-50%);
    height: calc(100vh - var(--bodyborder));
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#home3 {
    position: fixed;
    left: 50%;
    bottom: 15px;
    width: 100%;
    max-width: var(--max-width);
    transform: translateX(-50%);
    height: calc(100vh - var(--bodyborder));
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.center{
    justify-content: center;
}

#cross {
    width: 28px;
    margin-top: 10px;
}

#active-project-row > * > *:first-child {
    margin-top: 0;
}

#menu > *:last-child,
#active-project-row > *:last-child {
    display: flex;
    justify-content: flex-end;
}

#active-project-row > *:last-child {
    align-items: flex-start;
}

#projet-haut {
    margin-top: 20px;
}

.active {
    position: relative;
}

.active::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 25px;
    height: 25px;
    background-color: var(--color);
    border-radius: 50%;
}

.project-cover {
    height: 20vw;
}

.active-project-image {
    height: 10vw;
}

.active-project-active-image {
    height: 95vh;
}
