body{
    display: grid;
}

h1{
    font-family: MainFont;
    font-weight: initial;
    color: #e2a2ec;
    font-size: var(--titleFontSize);
}

.me{
    margin-top: var(--sectionSpace);
    text-align: center;
    margin-bottom: var(--eltSpace);
    font-family: Corbel;
    font-weight: lighter;
    font-size: calc(var(--titleFontSize) * 0.30);
}

.intro{
    text-align: center;
    width: 55%;
    justify-self: center;
    font-family: Corbel;
    font-weight: lighter;
    font-size: calc(var(--titleFontSize) * 0.35);
}

.list{
    text-align: center;
    display: flex;
    flex-direction: row;
    margin: var(--sectionSpace) 0;
    justify-content: space-between;
    width: 65%;
    justify-self: center;
}

h3{
    font-family: MainFont;
    font-weight: initial;
    font-size: calc(var(--titleFontSize) * 0.7);
    color: #e2a2ec;
}

.listPoint{
    list-style: none;
    font-family: Corbel;
    font-weight: lighter;
    font-size: calc(var(--titleFontSize) * 0.35);
    width: 30vw;
}

.loisirs{
    background-color: #e2a2ec;
    display: grid;
}

#white{
    color: white;
}

.links{
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    margin-top: var(--sectionSpace);
    justify-content: center;
    gap: calc(var(--eltSpace) * 1.5);
    text-align: center;
    width: 65%;
}

.link{
    font-family: "MainFont";
    text-decoration: underline;
    font-weight: normal;
    font-size: var(--linkFontSize);
    color: #e2a2ec;
    margin-top: 0;
    display: inline-block;
    transition: transform 0.2s ease;
}
.link:hover{
    color: #4d3851;
    transform: scale(103%);
}