body{
    font-size: 20px;
    margin: 0;
    padding: 0;
    font-family: 'albert sans';
    line-height: 160%;
    background-color: rgb(220, 247, 187);
    
}

.big__title{
    margin-top: 131px;
    font-size: 131px;
    margin-bottom: 160px;
    font-family: 'Bodoni Moda SC';
    font-weight: 900;
}

.medium__title{
    font-size: 51px;
    margin-bottom: 80px;
    font-weight: 800;
    font-family: 'Bodoni Moda SC';
    
}

.paragraphe{
    margin-bottom: 40px;
    max-width: 75ch;
}

.flex{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.circle1{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid green;
    position: absolute;
    top: -60px;
    left: -50px;
    z-index: -10;
    opacity: 50%;
}

.circle2{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 3px solid green;
    position: absolute;
    top: -80px;
    left: -170px;
    z-index: -10;
    opacity: 50%;
}

.circle3{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid green;
    position: absolute;
    right: -60px;
    top: -50px;
    z-index: -10;
    opacity: 50%;
}

footer{
    margin-top: 20px;
    margin-bottom: 60px;
}

a{
    cursor: pointer;
    color: black;
}



@media (max-width: 800px) {
    .paragraphe{
        max-width: 50ch;
        margin-left: 30px;
        margin-right: 30px;
        font-size: clamp(1rem, 0.7955rem + 0.9091vw, 1.25rem);
        margin-bottom: 32px;
    }

    .medium__title{
        font-size: 36px;
        margin-bottom: 64px;
        max-width: 9ch;
        margin-left: 0px;
        line-height: 120%;
    }

    .big__title{
        font-size: 81px;
        margin-bottom: 128px;
        max-width: 5ch;
        line-height: 120%;
        margin-left: -30px;
    }
}

@media (max-width: 1200px) {
    .paragraphe{
        max-width: 60ch;
    }

    .big__title{
        line-height: 100%;
        font-size: 81px;
    }

    .medium__title{
        font-size: 36px;
    }

   
}