body{
    background-color: blueviolet;
    background-image: url(enter-bg.jpg);
    cursor: url("no-click.png"), auto;
}

main{
    width: 40%;
    margin: auto;
}

section{
    width: 50%;
    margin: auto;
    border-style: solid;
    padding: 20px;
    margin-top: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: whitesmoke;
    color: slateblue;
}

.gif{
    width: 220px;
    opacity: 0.7;
    transition: 0.8s;
}

.welcome-text{
    font-family: "Delius Swash Caps", cursive;
    font-size: small;
}

section.welcome-text{
    height: 100px;
    overflow: auto;
}

img.gif:hover{
    opacity: 1;
    transition: 0.8s;
}

button{
    background-color: slateblue;
    color: whitesmoke;
    padding: 15px 32px;
    font-family: "Meow Script", cursive;
    font-size: 32pt;
}

button:hover{
    background-color: whitesmoke;
    color: slateblue;
    cursor: url("click.png"), auto;
}

footer{
    width: 40%;
    margin: auto;
    border-style: solid;
    padding: 10px;
    margin-top: 40px;
    text-align: center;
    background-color: whitesmoke;
    color: slateblue;
    font-family: "Silkscreen", sans-serif;
    font-size: small;
}

/*polices d'écriture*/
.silkscreen-regular {
  font-family: "Silkscreen", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.silkscreen-bold {
  font-family: "Silkscreen", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.delius-swash-caps-regular {
  font-family: "Delius Swash Caps", cursive;
  font-weight: 400;
  font-style: normal;
}
.meow-script-regular {
  font-family: "Meow Script", cursive;
  font-weight: 400;
  font-style: normal;
}

