body {
    display: flex;
    flex-direction: column;
    color:deeppink;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align: center;
    margin: 0 6% 3%;
}
#info {
    display: flex;
    flex-direction: row;
    background-color: white;
    justify-content: space-between;
}
nav {
    display: flex;
    flex-direction: row;
    position: sticky;
    top: 0;
    background-color: white;
    border: 1px solid hotpink;
    justify-content: space-between;
}
#catalogue {
    display: flex;
    flex-direction: row;
    background-color: white;
    border: 1px solid hotpink;
    justify-content: center;
    margin-bottom: 2vh;
}
#catalogue:hover {
    background-color: hotpink;
    color: white;
}
h1 {
    font-size: 12.5vw;
    margin: 5% 0 0;
}
h2 {
    color: white;
    background-color: hotpink;
}
h4 {
    color: coral;
    border: dotted 1px coral;
}
a {
    text-decoration: none;
    color:hotpink;
}
a:hover {
    color: rgb(254, 131, 0);
}

.projects, .workshops {
    display: flex;
    flex-direction: column;
}

#Back {
    position: sticky;
    bottom: 15%;
    width: 10vw;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: coral;
    display: flex;
    align-items: center;
    justify-content: center;
}
#Back a {
    color: white;
    font-size: 8vw;
}