@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&display=swap');

body {
    background-color: #180D4C;
    padding: 0;
    display: grid;
    justify-content: center; 
    align-items: center; 
    height: 568px;
    height: 100vh;
    margin: auto;
    overflow:scroll;
}

h1 {
text-align: center;
    color: #FFF;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 900;
}

p {
    color: #FFF;
    text-align: center;
   font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

img {
    width: 200px;
    height: auto;
    padding-top: 20px;
    padding-bottom: 50px;
}
h2 {
    color: #FFF;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 800;
    text-align: center;
}
.container {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 80vh;

}

.container a{
    text-decoration: none;
    color: #FFF;
    background-color: #36d96f;
    border-radius: 10px;
    width: 90px;
    height: 20px;
    text-align: center;
    padding: 10px;
    font-size: 11px;
    font-family: 'Baloo 2', sans-serif;

}

.defi_echoue{
    margin-top: 40px;

}

button {
 position: relative;
 border: none;
 background: transparent;
 padding: 0;
 cursor: pointer;
 outline-offset: 4px;
 transition: filter 250ms;
 user-select: none;
 margin: 20px;

}

.shadow {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 border-radius: 12px;
 background: hsl(0deg 0% 0% / 0.25);
 will-change: transform;
 transform: translateY(2px);
 transition: transform
    600ms
    cubic-bezier(.3, .7, .4, 1);
}

.edge {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 border-radius: 12px;
 background: linear-gradient(
    to left,
    hsl(46, 60%, 51%) 0%,
    hsl(53, 73%, 57%) 8%,
    hsl(45, 76%, 60%) 92%,
    hsl(38, 92%, 44%) 100%
  );
}

.front_text {
 display: block;
 position: relative;
 padding: 12px 27px;
 border-radius: 12px;
 font-size: 3rem;
 color: #180D4C;
 background: #F1F097;
 will-change: transform;
 transform: translateY(-4px);
 transition: transform
    600ms
    cubic-bezier(.3, .7, .4, 1);
    margin-bottom: 7px ;
}

.defi_echoue a{
    font-size: 2rem;
}

button:active .front_text {
 transform: translateY(-2px);
 transition: transform 34ms;
}



button:active .shadow {
 transform: translateY(1px);
 transition: transform 34ms;
}

button:focus:not(:focus-visible) {
 outline: none;
}
#def_nom{
font-size: 60px;
margin: 20px;
}

#def_description, #def_anecdote{
    font-size: 40px;
    margin: 30px;
}