:root{
    font-size: 25px;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.image{
    object-fit: contain;
    height: 8rem;
    transition: height 0.5s linear;
    border-radius: 10px;
}

h2{
    font-size: 4rem;
    transition: font-size 0.5s linear;
    margin: 0;
}

header:hover h2{
    font-size: 3.3rem;
}

header:hover .image{
    height: 14rem;
}

html{
    background-color:  hsl(273, 79%, 62%) ;
    background: #ffffff;
    background: radial-gradient(circle,hsl(273, 79%, 62%) 0%, hsl(264, 81%, 59%) 100%);
}

body{ 
    max-width: 35rem;
    margin: auto;
    padding: 2rem;
    /* border: solid hsl(329, 100%, 50%) 20px; */
    box-shadow: 0px 0px 70px 80px rgb(204, 58, 204);
    font-family: 'CM Typewriter Text';
    font-weight: 700;
    font-style: normal;
    background-color: hsl(273, 79%, 62%);
    background: #ffffff;
    background: radial-gradient(circle,rgb(204, 58, 204) 0%, hsl(264, 81%, 59%) 100%);
}

h3{
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

div{
    align-content: center;
}

nav {
    font-size: 30px;
    font-style: italic;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
a{
    height: 2rem;
    transition: font-size 0.5s linear;
    text-decoration: none;
    color: black;
}

.notes{
    height: 5rem;
}

.groupe{
    display: flex;
    flex-direction: row-reverse;
    gap: 12px;
}
h4{
    font-size: 30px;
    height: 4rem;
    display: flex;
    justify-content: start;
    align-items: end;
    margin-bottom: 2px;
    margin-top: 20px;
}