/* body = fond de ta page, la grande boîte */
/* Tu rajoutes les petites boîtes avec div */
/* header, footer, main, figure, article... c'est des div mais avec des noms spécials */
/* Tentative de div */
html {
    scroll-behavior: smooth;
}
body{
    background-color:rgb(63, 63, 77);
    margin:0%;
    width:100%;
    font-size: 18px;
}
.titresite{
    font-size: 5rem;
}
header{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width:100%;
    background-color:black;
    color:white;
    padding-bottom: 10px;
    border-bottom-style: solid;
    border-bottom-width: 10px;
    border-bottom-color: rgb(63, 63, 77);
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    opacity:0.9;
}
#question{
    font-size:1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cesiteestfaitpourtoi{
    font-size: 2rem;
    font-weight: bold;
}
#search{
    display: block;
    margin: 40px auto;
    width: 60%;
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 25px;
    border: 2px solid white;
}
.index{
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    
    display: flex;
    flex-direction: column;
    gap: 20px;

    font-size: 30px;
    font-weight: bold;

    user-select: none;
}

.index a {
    text-decoration: none;
    color: #ffffff;
    padding: 2px 4px;

    opacity: 0.6;
    transition: 0.2s;
}

.chanson{
    display:flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background-color:black;
    width:80%;
    margin: 0 auto;
    color:white;
    padding:20px;
    border-style:solid;
    border-width:5px;
    border-radius:40px;
    border-color: rgb(63, 63, 77);
    line-height: 0%;
}
.titre{
    font-size:3rem;
    font-weight: bolder;
}
.artiste{
    font-size: 3rem;
    font-weight:lighter;
}
.lien{
    text-decoration:underline;
    color:white;
}
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgb(63, 63, 77);
    padding: 20px;
    text-align: center;
    color:white;
    font-size: 1.7rem;

    box-sizing: border-box; /*c'est magique pour centrer*/
}
.dernierechanson{
    display:flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background-color:rgb(63, 63, 77);
    width:80%;
    margin: 0 auto;
    color:white;
    padding:20px;
    border-style:solid;
    border-width:5px;
    border-radius:40px;
    border-color: rgb(63, 63, 77);
    line-height: 0%;
}